/* =========================================================
   eSolutions Webbers - Master Stylesheet
   Designed to match the official brand template
   ========================================================= */

/* ---- Root Variables ---- */
:root {
  --primary: #2B4FE6;
  --primary-dark: #1E3FC0;
  --primary-light: #EEF2FF;
  --accent: #F97316;
  --accent-dark: #EA580C;
  --navy: #0F1B3D;
  --navy-light: #1E2952;
  --text-dark: #1F2A44;
  --text-body: #5A6478;
  --text-muted: #8B94A8;
  --bg-light: #F5F7FF;
  --bg-soft: #FAFBFF;
  --white: #FFFFFF;
  --border: #E5E9F2;
  --success: #10B981;
  --shadow-sm: 0 1px 3px rgba(15, 27, 61, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 27, 61, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 27, 61, 0.10);
  --shadow-xl: 0 20px 60px rgba(43, 79, 230, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---- Container — fluid + responsive (Bootstrap-style stepped widths) ---- */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 576px)  { .container { max-width: 540px;  padding-left: 20px; padding-right: 20px; } }
@media (min-width: 768px)  { .container { max-width: 720px;  } }
@media (min-width: 992px)  { .container { max-width: 960px;  padding-left: 24px; padding-right: 24px; } }
@media (min-width: 1200px) { .container { max-width: 1400px; } }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-navy { color: var(--navy) !important; }

/* ---- Section Tag/Badge ---- */
.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title-wrap { text-align: center; margin-bottom: 56px; }
.section-title-wrap p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--text-body);
  font-size: 1.02rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(43, 79, 230, 0.32);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(43, 79, 230, 0.42);
}
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}
.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo .logo-icon {
  width: 160px;
  height: auto;
  /* background: linear-gradient(135deg, var(--primary), var(--accent)); */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}
.logo span.brand-name {
  color: var(--primary);
  font-weight: 800;
}
.logo small {
  display: block;
  font-size: 0.62rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-right: 24px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { width: 24px; }
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--primary); }

/* Dropdown */
.has-dropdown > a::before {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 6px;
  font-size: 0.7rem;
  display: inline-block;
  transition: var(--transition);
  margin-right: 4px;
  order: 2;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}
/* Hover dropdown only on real-cursor desktop devices (prevents conflicts on touch / mobile) */
@media (hover: hover) and (pointer: fine) and (min-width: 1081px) {
  .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}
.dropdown li a {
  display: block;
  padding: 10px 14px;
  color: var(--text-body);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown li a:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 18px;
}

.header-cta {
  background: var(--primary);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(43, 79, 230, 0.28);
}
.header-cta:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hide mobile-only CTA list item by default (shown inside hamburger on mobile) */
.nav-cta-mobile { display: none; }

/* =========================================================
   HERO SECTION + SLIDER
   ========================================================= */
.hero {
  padding-top: 100px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43, 79, 230, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-slider {
  position: relative;
  z-index: 1;
}
.hero-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 540px;
  animation: fadeInUp 0.6s ease;
}
.hero-slide.active { display: grid; }

.hero-content { position: relative; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--primary-light);
  border-radius: 100px;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero-tag i { font-size: 0.7rem; }
.hero-title {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.hero-title .blue { color: var(--primary); }
.hero-title .orange { color: var(--accent); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-item .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 440px;
}
.hero-image-bg {
  position: absolute;
  width: 460px;
  height: 460px;
  max-width: 100%;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.10) 0%, rgba(43, 79, 230, 0.06) 40%, transparent 75%);
  border-radius: 50%;
  z-index: 0;
}
.hero-image-bg::before,
.hero-image-bg::after {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1.5px dashed rgba(43, 79, 230, 0.16);
  border-radius: 50%;
  animation: rotate 50s linear infinite;
}
.hero-image-bg::after {
  inset: 70px;
  border-color: rgba(139, 92, 246, 0.18);
  animation: rotate 35s linear infinite reverse;
}

/* Decorative dots scattered around */
.hero-image-wrap .dot-decor {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: 1;
}
.hero-image-wrap .dot-decor.d1 { top: 18%; left: 4%;  background: var(--primary); }
.hero-image-wrap .dot-decor.d2 { top: 12%; right: 8%; background: #8B5CF6; }
.hero-image-wrap .dot-decor.d3 { bottom: 22%; left: 8%; background: var(--accent); width: 8px; height: 8px; }
.hero-image-wrap .dot-decor.d4 { bottom: 8%;  right: 14%; background: #10B981; width: 12px; height: 12px; }

/* Hero image card — matches reference design */
.hero-image-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(135deg, #F5F3FF 0%, #EEF2FF 50%, #FFEDD5 100%); */
}
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-card .placeholder-icon {
  font-size: clamp(3.5rem, 9vw, 6rem);
  background: linear-gradient(135deg, var(--primary), #8B5CF6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
}

/* Legacy class kept for backwards compatibility */
.hero-image {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
}
.hero-image-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #F5F3FF 0%, #EEF2FF 50%, #FFEDD5 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: clamp(3.5rem, 9vw, 6rem);
  position: relative;
  z-index: 2;
}

/* Floating icons */
.float-icon {
  position: absolute;
  background: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(15, 27, 61, 0.15), 0 4px 10px rgba(15, 27, 61, 0.06);
  z-index: 3;
  font-size: 1.4rem;
}
.float-icon.icon-1 { top: 18%; left: 2%; color: #8B5CF6; animation: float 3s ease-in-out infinite; }
.float-icon.icon-2 { top: 38%; right: -3%; color: var(--primary); animation: float 3s ease-in-out infinite 0.6s; }
.float-icon.icon-3 { bottom: 14%; right: 6%; color: var(--primary); animation: float 3s ease-in-out infinite 1.2s; }

/* Slider controls */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dots .dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 100px;
}

/* =========================================================
   ABOUT / WE MAKE SOLUTIONS GREAT
   ========================================================= */
.about-section {
  padding: 80px 0;
  background: var(--bg-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.about-card-icons {
  display: flex;
  gap: 12px;
}
.about-card-icons .ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
}
.about-card-icons .ic:nth-child(2) { background: #DCFCE7; color: var(--success); }
.about-card-icons .ic:nth-child(3) { background: #FEF3C7; color: var(--accent); }
.about-projects {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  text-align: right;
}
.about-projects strong {
  font-size: 1.6rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.about-projects span {
  font-size: 0.72rem;
  opacity: 0.9;
}
.about-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.about-card > p {
  color: var(--text-body);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.tech-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tech-pills .pill {
  padding: 7px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}
.tech-pills .pill:nth-child(2) { background: #FEF3C7; color: #D97706; }
.tech-pills .pill:nth-child(3) { background: #DCFCE7; color: var(--success); }
.tech-pills .pill:nth-child(4) { background: #FCE7F3; color: #DB2777; }
.tech-pills .pill:nth-child(5) { background: #E0E7FF; color: #6366F1; }

.about-content h2 { margin-bottom: 18px; line-height: 1.2; }
.about-content > p {
  margin-bottom: 28px;
  font-size: 1rem;
}
.about-features { margin-bottom: 28px; }
.about-feature {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.about-feature .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 4px;
}
.about-feature h4 {
  font-size: 1.02rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.about-feature p {
  font-size: 0.9rem;
  color: var(--text-body);
}

.country-flags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.flag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--white);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}
.flag-pill .flag {
  width: 22px;
  height: 16px;
  border-radius: 3px;
  display: inline-block;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.flag.my { background: linear-gradient(0deg, #cc0001 50%, #fff 50%); }
.flag.my::before { content: ''; position: absolute; top: 0; left: 0; width: 50%; height: 60%; background: #010066; }
.flag.ae { background: linear-gradient(180deg, #00732f 33%, #fff 33%, #fff 66%, #000 66%); }
.flag.ae::before { content: ''; position: absolute; left: 0; top: 0; width: 25%; height: 100%; background: #ff0000; }
.flag.in { background: linear-gradient(180deg, #ff9933 33%, #fff 33%, #fff 66%, #138808 66%); }
.flag.eu { background: #003399; }
.flag.eu::before { content: '★'; position: absolute; inset: 0; color: #fc0; font-size: 10px; text-align: center; line-height: 16px; }

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section {
  padding: 90px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
  transition: var(--transition);
}
.service-card:nth-child(2) .service-icon { background: #DCFCE7; color: var(--success); }
.service-card:nth-child(3) .service-icon { background: #FEF3C7; color: var(--accent); }
.service-card:nth-child(4) .service-icon { background: #FCE7F3; color: #DB2777; }
.service-card:nth-child(5) .service-icon { background: #E0E7FF; color: #6366F1; }
.service-card:nth-child(6) .service-icon { background: #DBEAFE; color: var(--primary); }
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }
.service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 18px;
  line-height: 1.6;
}
.service-link {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { gap: 10px; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section {
  padding: 80px 0;
  background: var(--bg-light);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.why-content > h2 { margin-bottom: 16px; }
.why-content > p {
  margin-bottom: 32px;
  font-size: 1rem;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-feature {
  display: flex;
  gap: 16px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.why-feature:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.why-feature .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.why-feature:nth-child(2) .icon { background: #FEF3C7; color: var(--accent); }
.why-feature:nth-child(3) .icon { background: #DCFCE7; color: var(--success); }
.why-feature:nth-child(4) .icon { background: #FCE7F3; color: #DB2777; }
.why-feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.why-feature p {
  font-size: 0.88rem;
  color: var(--text-body);
}

.trust-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.trust-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
  position: relative;
}
.trust-card > p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 28px;
  position: relative;
}
.trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
  position: relative;
}
.trust-stat strong {
  font-size: 2.4rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-stat span {
  font-size: 0.82rem;
  opacity: 0.9;
}
.trust-divider {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 22px;
  position: relative;
}
.trust-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.85;
  font-weight: 700;
}
.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.industry-pill {
  padding: 7px 14px;
  background: rgba(255,255,255,0.14);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white);
  backdrop-filter: blur(10px);
}

/* =========================================================
   PROCESS SECTION
   ========================================================= */
.process-section {
  padding: 80px 0;
  background: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 40px;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 100px;
  height: 100px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  transition: var(--transition);
}
.process-step:nth-child(2) .process-num {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(43, 79, 230, 0.32);
}
.process-step:hover .process-num { transform: scale(1.05); }
.process-step h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--text-body);
  max-width: 280px;
  margin: 0 auto;
}

/* =========================================================
   PRODUCTS SECTION
   ========================================================= */
.products-section {
  padding: 90px 0;
  background: var(--bg-light);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-image {
  width: 100%;
  height: 170px;
  background: linear-gradient(135deg, var(--primary-light), #FFEDD5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  position: relative;
  overflow: hidden;
}
.product-card:nth-child(2) .product-image { background: linear-gradient(135deg, #DBEAFE, #DCFCE7); color: var(--success); }
.product-card:nth-child(3) .product-image { background: linear-gradient(135deg, #FEF3C7, #FCE7F3); color: var(--accent); }
.product-card:nth-child(4) .product-image { background: linear-gradient(135deg, #1E2952, #2B4FE6); color: var(--white); }
.product-card:nth-child(5) .product-image { background: linear-gradient(135deg, #FCE7F3, #FEF3C7); color: #DB2777; }
.product-card:nth-child(6) .product-image { background: linear-gradient(135deg, #DCFCE7, #DBEAFE); color: #6366F1; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-content { padding: 22px 24px 26px; }
.product-content h4 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.product-content p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section {
  padding: 90px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.stars { color: var(--accent); margin-bottom: 16px; font-size: 0.9rem; }
.stars i { margin-right: 2px; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}
.testimonial-card:nth-child(2) .author-avatar { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.author-info h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--text-dark);
  font-weight: 700;
}
.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =========================================================
   CLIENTS / BRANDS
   ========================================================= */
.brands-section {
  padding: 70px 0 90px;
  background: var(--white);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 48px;
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  /* filter: grayscale(100%); */
  opacity: 0.65;
  /* transition: var(--transition); */
  font-weight: 800;
  font-size: 1.1rem;
  /* color: var(--text-muted); */
  letter-spacing: 0.05em;
  text-align: center;
}
.brand-item:hover { filter: grayscale(0); opacity: 1; transform: scale(1.05); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand .logo .brand-name { color: var(--accent); }
.footer-about {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.7);
}
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.footer-contact-item i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
  width: 14px;
}
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--white); }

.footer-col h5 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.84rem; color: rgba(255,255,255,0.6); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* =========================================================
   PAGE HEADER (inner pages)
   ========================================================= */
.page-header {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before,
.page-header::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.page-header::before { width: 500px; height: 500px; top: -250px; right: -150px; }
.page-header::after { width: 400px; height: 400px; bottom: -200px; left: -100px; }
.page-header h1 {
  color: var(--white);
  position: relative;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.65rem; opacity: 0.7; }

/* Inner page content */
.page-section {
  padding: 80px 0;
}
.page-section.alt { background: var(--bg-light); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.feature-list li i {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 5px;
  font-size: 0.85rem;
}

.info-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
}
.info-box h3 {
  margin-bottom: 14px;
  color: var(--text-dark);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.spec-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.spec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.spec-card .spec-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.spec-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.spec-card ul li {
  font-size: 0.88rem;
  padding: 5px 0;
  display: flex;
  gap: 8px;
}
.spec-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--success);
  font-size: 0.75rem;
  margin-top: 4px;
}

/* CTA Section */
.cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(43, 79, 230, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
}
.cta-inner h2 { color: var(--white); margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 1.02rem; }

/* Industry / Service / Product Grid */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.lp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: block;
}
.lp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.lp-card .lp-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-light), #DBEAFE);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: var(--transition);
}
.lp-card:hover .lp-icon {
  transform: scale(1.08) rotate(-3deg);
  background: var(--primary);
  color: var(--white);
}
.lp-card h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-dark); }
.lp-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.6; margin-bottom: 16px; }

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 14px; position: relative; }
.contact-info-card > p { color: rgba(255,255,255,0.85); margin-bottom: 32px; position: relative; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; position: relative; }
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info-item .ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h5 { color: var(--white); margin-bottom: 4px; font-size: 0.95rem; }
.contact-info-item p, .contact-info-item a { color: rgba(255,255,255,0.85); font-size: 0.88rem; }

.contact-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--bg-soft);
  color: var(--text-dark);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(43, 79, 230, 0.1);
}
.form-row textarea { resize: vertical; min-height: 120px; }

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* AOS-like reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal.left { transform: translateX(-30px); }
.reveal.left.in-view { transform: translateX(0); }
.reveal.right { transform: translateX(30px); }
.reveal.right.in-view { transform: translateX(0); }

/* On mobile/tablet, do NOT translate horizontally - it causes text clipping
   when content is narrower than the screen and the animation hasn't fired yet */
@media (max-width: 860px) {
  .reveal.left,
  .reveal.right { transform: translateY(20px); }
  .reveal.left.in-view,
  .reveal.right.in-view { transform: translateY(0); }
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services-grid,
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Header switches to hamburger earlier (1080px) so it doesn't cramp at tablet widths */
@media (max-width: 1080px) {
  .menu-toggle { display: flex; }
  .header-cta-desktop { display: none; }

  .nav-menu {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 24px;
    margin-right: 0;
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    height: auto;
    min-height: calc(100vh - 78px);
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; }
  /* Lock body scroll when menu open */
  body.menu-open { overflow: hidden; }

  .nav-menu > li > a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav-menu > li > a::after { display: none; }

  .nav-menu .has-dropdown .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: var(--bg-light);
    opacity: 1;
    visibility: visible;
    margin: 0 24px 8px;
    display: none;
    border: none;
    padding: 8px;
    min-width: 0;
    width: auto;
    left: auto;
    top: auto;
    border-radius: 12px;
  }
  .nav-menu .has-dropdown.open .dropdown { display: block; }
  .nav-menu .has-dropdown .dropdown li a {
    display: block;
    padding: 12px 14px;
    color: var(--text-body);
    font-size: 0.92rem;
    border-radius: 8px;
  }
  .nav-menu .has-dropdown .dropdown li a:hover {
    background: var(--white);
    color: var(--primary);
    padding-left: 14px;
  }
  .has-dropdown > a::before { float: right; }

  /* Mobile CTA inside hamburger */
  .nav-cta-mobile {
    display: block;
    padding: 18px 24px 6px;
    border-bottom: none !important;
  }
  .nav-cta-mobile .header-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    font-size: 0.95rem;
  }
  .nav-cta-mobile a { border-bottom: none !important; padding: 0 !important; }
}

@media (max-width: 860px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .hero-slide {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; gap: 28px; }

  .hero-image-wrap {
    order: -1;
    min-height: auto;
    padding: 10px 0;
  }
  .hero-image-bg {
    width: 100%;
    max-width: 380px;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .hero-image-card,
  .hero-image-placeholder {
    max-width: 320px;
  }
  .hero-image-wrap .dot-decor.d3,
  .hero-image-wrap .dot-decor.d4 { display: none; }

  .about-grid,
  .why-grid,
  .content-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-grid.reverse > *:first-child { order: 2; }

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

  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid::before { display: none; }

  .cta-inner { grid-template-columns: 1fr; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
    line-height: 1.15;
  }
  .hero-desc {
    font-size: 0.98rem;
    margin-bottom: 26px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 36px;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 18px;
    width: 100%;
    justify-content: space-around;
  }
  .stat-item { flex: 1; min-width: 0; }
  .stat-item .stat-num { font-size: 1.55rem; }
  .stat-item .stat-label { font-size: 0.72rem; }

  .hero-image-card,
  .hero-image-placeholder { max-width: 280px; }
  .hero-image-bg { max-width: 320px; }
  .float-icon {
    width: 46px;
    height: 46px;
    font-size: 1rem;
    border-radius: 12px;
  }
  .hero-image-wrap .dot-decor { display: none; }

  /* Better logo on small screens */
  .logo { font-size: 1.1rem; gap: 8px; }
   .logo .logo-icon { width: 92px; height: 32px; font-size: 0.9rem; }
  .logo small { font-size: 0.55rem; }
}

@media (max-width: 480px) {
  .btn { padding: 12px 22px; font-size: 0.88rem; }
  .about-section, .services-section, .why-section,
  .process-section, .products-section, .testimonials-section,
  .brands-section, .page-section { padding: 56px 0; }
  .about-card, .trust-card, .contact-info-card, .contact-form-card { padding: 22px; }
}

/* ============== Inner page additions ============== */

/* Card link for products / industries overview cards */
.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
}
.service-card .card-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* Contact page — info list (light background variant) */
.contact-info-list .contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--bg-soft);
    transition: var(--transition);
}
.contact-info-list .contact-info-item:hover {
    background: var(--primary-light);
    transform: translateX(4px);
}
.contact-info-list .contact-info-item .ci-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.05rem;
}
.contact-info-list .contact-info-item h4 {
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 1rem;
}
.contact-info-list .contact-info-item p,
.contact-info-list .contact-info-item a {
    color: var(--text-medium);
    font-size: 0.92rem;
}
.contact-info-list .contact-info-item a:hover { color: var(--primary); }

/* Contact form */
.contact-form-wrap {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { color: var(--text-dark); margin-bottom: 8px; }
.contact-form-intro { color: var(--text-medium); margin-bottom: 24px; font-size: 0.94rem; }

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}
.contact-form .form-group { margin-bottom: 18px; }
.contact-form .form-group label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 7px;
}
.contact-form .req { color: var(--accent); }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-soft);
    color: var(--text-dark);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(43, 79, 230, 0.1);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .form-submit-btn {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
}

.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 0.93rem;
    font-weight: 500;
}
.form-alert i { font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; }
.form-alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}
.form-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* Mobile adjustments for contact form */
@media (max-width: 860px) {
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 26px; }
}

/* Page sections smooth scroll-into-view animation safety net */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; }
}
/* =========================================================
   MOBILE RESPONSIVE — additional polish for very small screens
   Fixes overflow / clipping at < 400px wide screens
   ========================================================= */

/* Belt-and-braces overflow guard — stops anything from causing horizontal
   scroll at narrow widths (this is what was causing the clipped text issue) */
html, body { overflow-x: hidden; max-width: 100vw; }
section { max-width: 100%; }

/* Long words / URLs / emails should wrap, not push the layout out */
p, h1, h2, h3, h4, h5, h6, li, a, span { overflow-wrap: anywhere; word-break: break-word; }
.feature-list li, .info-box, .about-card, .service-card,
.contact-info-item, .footer-contact-item { min-width: 0; }

/* Tablet portrait & below */
@media (max-width: 600px) {
  /* Page header — was 140px top / 70px bottom, too tall on phones */
  .page-header { padding: 110px 0 50px; }
  .page-header h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* Section padding consistent across pages */
  .page-section, .about-section, .services-section, .why-section,
  .process-section, .products-section, .testimonials-section,
  .brands-section { padding: 56px 0; }

  /* Cards / panels — reduce inner padding so content has room */
  .info-box, .about-card, .trust-card,
  .contact-info-card, .contact-form-card, .contact-form-wrap,
  .spec-card, .lp-card, .service-card { padding: 22px; }

  /* Section title size on mobile */
  h2 { font-size: clamp(1.5rem, 5.5vw, 1.9rem); }
  h3 { font-size: 1.15rem; }

  /* About card top — let the projects badge wrap below the icons */
  .about-card-top { flex-wrap: wrap; gap: 14px; }
  .about-projects { text-align: left; }

  /* CTA section vertical layout */
  .cta-section { padding: 50px 0; }
  .cta-inner { gap: 20px; text-align: center; }
  .cta-inner h2 { font-size: 1.5rem; }
}

/* Phones < 400px (e.g. iPhone SE 375, dev tools 345) */
@media (max-width: 400px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .page-header { padding: 100px 0 44px; }
  .page-header h1 { font-size: 1.55rem; line-height: 1.2; }

  /* Tighter buttons */
  .btn { padding: 11px 18px; font-size: 0.85rem; gap: 8px; }
  .btn i { font-size: 0.75rem; }

  /* Cards even tighter */
  .info-box, .about-card, .trust-card, .contact-info-card,
  .contact-form-card, .contact-form-wrap, .spec-card,
  .lp-card, .service-card { padding: 18px; }

  /* Feature list items wrap nicely */
  .feature-list li { font-size: 0.88rem; gap: 10px; }
  .feature-list li i { font-size: 0.78rem; margin-top: 4px; }

  /* Logo small */
  .logo { font-size: 0.95rem; gap: 6px; }
  .logo .logo-iconSS img { max-height: 36px; }

  /* Hide decorative dot/icons on very narrow screens */
  .float-icon, .hero-image-wrap .dot-decor { display: none; }

  /* Footer bottom row */
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

/* =========================================================
   ABOUT PAGE — soft background motif behind the Glance panel
   ========================================================= */
.about-glance-wrap {
  position: relative;
}
.about-glance-wrap::before {
  content: '';
  position: absolute;
  inset: -28px -20px;
  background:
    radial-gradient(circle at 20% 30%, rgba(43, 79, 230, 0.10), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.08), transparent 55%),
    linear-gradient(135deg, rgba(43, 79, 230, 0.06), rgba(139, 92, 246, 0.05));
  border-radius: 28px;
  filter: blur(14px);
  z-index: 0;
}
.about-glance-wrap > .info-box {
  position: relative;
  z-index: 1;
  backdrop-filter: blur(2px);
}

/* =========================================================
   CERTIFICATIONS ROW — for cybersecurity page
   ========================================================= */
.certs-section {
  padding: 60px 0;
  background: var(--bg-light);
}
.certs-title {
  text-align: center;
  margin-bottom: 36px;
}
.certs-title h3 {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.certs-title p {
  color: var(--text-body);
  font-size: 0.95rem;
  max-width: 580px;
  margin: 0 auto;
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}
.cert-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  min-height: 110px;
}
.cert-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(43, 79, 230, 0.2);
}
.cert-badge .cert-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.cert-badge .cert-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.cert-badge .cert-sub {
  font-size: 0.66rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Cyber Security pill list — for the Digital Forensics block */
.cyber-pillgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin: 26px 0 6px;
}
.cyber-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.cyber-pill:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  border-left-color: var(--accent);
}
.cyber-pill i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary-light);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.cyber-pill span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* =========================================================
   ILLUSTRATION CARDS — eCommerce, Chatbot, Smart Boards
   Lightweight CSS/SVG-based, no heavy images
   ========================================================= */
.illustration-card {
  position: relative;
  background: linear-gradient(135deg, #EEF2FF 0%, #FAFBFF 100%);
  border-radius: var(--radius-xl);
  padding: 30px;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illustration-card::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(43, 79, 230, 0.16) 0%, transparent 65%);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}
.illustration-card svg { position: relative; z-index: 1; max-width: 100%; height: auto; }

/* Highlight bullets used on enhanced eCommerce page */
.highlight-bullets { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 14px; }
.highlight-bullets .hb-item {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(43, 79, 230, 0.06), rgba(43, 79, 230, 0.02));
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary);
  align-items: flex-start;
}
.highlight-bullets .hb-item i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.highlight-bullets .hb-item p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-dark);
  line-height: 1.55;
  font-weight: 500;
}
.highlight-bullets .hb-item p strong { color: var(--primary); font-weight: 700; }

/* =========================================================
   STATS STRIP — small reusable bar of metrics under heroes
   ========================================================= */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  margin-top: 28px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stats-strip .ss-item { text-align: center; }
.stats-strip .ss-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-strip .ss-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
