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

:root {
  --primary: #0A1929;
  --primary-light: #1A3A5C;
  --primary-medium: #0D47A1;
  --accent: #1565C0;
  --accent-light: #1976D2;
  --accent-glow: #42A5F5;
  --white: #FFFFFF;
  --off-white: #F0F4F8;
  --gray-50: #F8FAFC;
  --gray-100: #E2E8F0;
  --gray-200: #CBD5E1;
  --gray-300: #94A3B8;
  --gray-400: #64748B;
  --text-dark: #0F172A;
  --text-light: #475569;
  --shadow-sm: 0 1px 3px rgba(10,25,41,0.08);
  --shadow-md: 0 4px 20px rgba(10,25,41,0.12);
  --shadow-lg: 0 10px 40px rgba(10,25,41,0.16);
  --shadow-xl: 0 20px 60px rgba(10,25,41,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10,25,41,0.06);
  transition: var(--transition);
}

.header.scrolled { box-shadow: var(--shadow-md); }

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 900;
}

.nav { display: flex; align-items: center; gap: 32px; }

.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

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

.nav a:hover { color: var(--accent); }
.nav a:hover::after { width: 100%; }
.nav a.active { color: var(--accent); }
.nav a.active::after { width: 100%; }

.btn-contact {
  background: var(--primary);
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.btn-contact:hover { background: var(--accent) !important; transform: translateY(-1px); }
.btn-contact::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SLIDER ===== */
.hero {
  margin-top: 72px;
  position: relative;
  height: 90vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.hero-slider { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active { opacity: 1; z-index: 2; }

.hero-slide .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide .bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,25,41,0.85) 0%, rgba(10,25,41,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 660px;
  color: white;
  padding: 60px 0;
}

.hero-content .badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(66,165,245,0.2);
  border: 1px solid rgba(66,165,245,0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-glow);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(21,101,192,0.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active { background: white; width: 32px; border-radius: 5px; }

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
}

.slider-arrow {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-arrow:hover { background: rgba(255,255,255,0.25); transform: scale(1.08); }

/* ===== SECTIONS COMMON ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .label {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(13,71,161,0.08);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(10,25,41,0.04);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-glow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.7;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}

.service-card:hover .learn-more { gap: 10px; }

.service-card .tags { display: flex; gap: 6px; flex-wrap: wrap; }

.service-card .tags span {
  padding: 3px 10px;
  background: rgba(13,71,161,0.06);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,25,41,0.05), transparent);
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.about-content .subtitle {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(13,71,161,0.08);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.about-content > p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.stat-item { text-align: center; }

.stat-item .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-item .label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
  font-weight: 500;
}

/* ===== CONTACT ===== */
.contact { background: var(--off-white); }

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

.contact-info h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item .icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(13,71,161,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-item p { font-size: 16px; font-weight: 500; color: var(--text-dark); }

.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-100);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--gray-50);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 4px rgba(21,101,192,0.1);
}

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

.contact-form .btn-primary { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { color: white; margin-bottom: 16px; }

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
  transition: var(--transition);
}

.footer-links a:hover { color: white; padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover { background: var(--accent); color: white; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.show { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.show { opacity: 1; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float { animation: float 3s ease-in-out infinite; }

/* Directional animations */
.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.show { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.show { opacity: 1; transform: translateX(0); }

.fade-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-scale.show { opacity: 1; transform: scale(1); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* ===== SERVICES PAGE HERO ===== */
.page-hero {
  margin-top: 72px;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  text-align: center;
}

.page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ALL SERVICES GRID ===== */
.all-services { padding: 80px 0; }

.services-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--gray-100);
  background: white;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.all-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.service-detailed-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(10,25,41,0.04);
}

.service-detailed-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.service-detailed-card .card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-detailed-card .card-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,25,41,0.6));
}

.service-detailed-card .card-body { padding: 28px; }

.service-detailed-card .card-body .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.service-detailed-card .card-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-detailed-card .card-body p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-detailed-card .card-body .tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 16px; }

.service-detailed-card .card-body .tags span {
  padding: 4px 12px;
  background: rgba(13,71,161,0.06);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

/* ===== DETAIL SECTIONS (IN-DEPTH) ===== */
.detail-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.detail-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.detail-list li {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tech-grid span {
  padding: 3px 10px;
  background: var(--off-white);
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-light);
  border: 1px solid var(--gray-100);
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.benefit-list li {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.benefit-list li::before {
  content: 'âœ“';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}

/* ===== GLOBAL PRESENCE ===== */
.global-presence {
  background: var(--primary);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.global-presence::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(21,101,192,0.15), transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(66,165,245,0.1), transparent 60%);
}

.global-presence .container { position: relative; z-index: 2; }

.global-presence .section-header h2 { color: white; }
.global-presence .section-header p { color: rgba(255,255,255,0.6); }

.world-map-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 50px;
}

.world-map-svg {
  width: 100%;
  height: auto;
  opacity: 0.3;
}

.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 3;
}

.map-pin .pin-dot {
  width: 14px;
  height: 14px;
  background: var(--accent-glow);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(66,165,245,0.6);
  position: relative;
}

.map-pin .pin-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--accent-glow);
  animation: pinPulse 2s ease-out infinite;
}

.map-pin .pin-ring:nth-child(2) { animation-delay: 1s; }

@keyframes pinPulse {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

.map-pin .pin-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -32px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  color: white;
  background: rgba(10,25,41,0.9);
  padding: 3px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.map-pin:hover .pin-label { opacity: 1; top: -38px; }

.pin-north-america { top: 22%; left: 18%; }
.pin-south-america { top: 52%; left: 27%; }
.pin-europe { top: 20%; left: 45%; }
.pin-india { top: 42%; left: 60%; }
.pin-uae { top: 35%; left: 54%; }
.pin-singapore { top: 48%; left: 68%; }
.pin-australia { top: 58%; left: 82%; }
.pin-japan { top: 28%; left: 78%; }

.global-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.global-stat {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.global-stat:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }

.global-stat .num {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent-glow);
  line-height: 1;
  margin-bottom: 6px;
}

.global-stat .label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* ===== FORM SUCCESS ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
}

.form-success.show { display: block; }

.form-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(46,204,113,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: #2ecc71;
}

.form-success h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-light);
  font-size: 14.5px;
}

.form-error {
  display: none;
  color: #e74c3c;
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(231,76,60,0.08);
  border-radius: 6px;
}

.form-error.show { display: block; }

.contact-form.loading .btn-primary {
  pointer-events: none;
  opacity: 0.7;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== COMPANY VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  text-align: center;
  padding: 28px 16px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,25,41,0.04);
  transition: var(--transition);
}

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.value-card .icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.value-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.value-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,25,41,0.04);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.testimonial-card .quote {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .quote::before {
  content: '\201C';
  font-size: 40px;
  color: var(--accent);
  opacity: 0.3;
  font-style: normal;
  line-height: 0;
  vertical-align: -10px;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.testimonial-author .info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-author .info span {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== CLIENT LOGOS ===== */
.client-logos {
  padding: 50px 0;
  background: white;
}

.client-logos h3 {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.5;
}

.logo-strip span {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 1px;
  padding: 8px 20px;
  background: var(--off-white);
  border-radius: 8px;
}

/* ===== BLOGS ===== */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,25,41,0.04);
  transition: var(--transition);
}

.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.blog-card { overflow: hidden; }

.blog-card .card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.blog-card:hover .card-img { transform: scale(1.08); }

.blog-card .card-img .date-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 12px;
  background: rgba(10,25,41,0.85);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.blog-card .card-body { padding: 24px; }

.blog-card .card-body .category {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(13,71,161,0.06);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}

.blog-card .card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 8px;
}

.blog-card .card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.blog-card .card-body .read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.blog-card:hover .read-more { gap: 8px; }

.blog-card .card-body .author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.blog-card .card-body .author .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
}

.blog-card .card-body .author .name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

.blog-card .card-body .author .date {
  font-size: 11px;
  color: var(--text-light);
}

/* Blog page hero */
.blog-page-hero {
  margin-top: 72px;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  text-align: center;
}

.blog-page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.blog-page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

.blog-page-content { padding: 60px 0; }

.blog-page-content .blog-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blogs-grid { grid-template-columns: 1fr; }
  .blog-page-hero h1 { font-size: 32px; }
}

/* ===== CAREERS ===== */
.careers {
  background: var(--off-white);
}

.careers-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.career-feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,25,41,0.04);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.career-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.career-feature-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.career-feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.career-feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.careers-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.career-item {
  background: white;
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,25,41,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  cursor: default;
}

.career-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }

.career-item-left { flex: 1; }

.career-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.career-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.career-meta span {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.career-meta .tag {
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}

.tag-fulltime { background: rgba(13,71,161,0.08); color: var(--accent); }
.tag-contract { background: rgba(255,152,0,0.1); color: #e65100; }
.tag-remote { background: rgba(46,204,113,0.1); color: #27ae60; }
.tag-hybrid { background: rgba(156,39,176,0.08); color: #7b1fa2; }

.career-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.career-item .btn-apply {
  padding: 10px 24px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.career-item .btn-apply:hover { background: var(--accent); transform: translateY(-2px); }

/* ===== CAREERS PAGE ===== */
.careers-page-hero {
  margin-top: 72px;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  text-align: center;
}

.careers-page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.careers-page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

.careers-search {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 32px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.careers-search input {
  flex: 1;
  min-width: 200px;
  padding: 12px 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-size: 15px;
  background: rgba(255,255,255,0.08);
  color: white;
  outline: none;
  font-family: inherit;
}

.careers-search input::placeholder { color: rgba(255,255,255,0.4); }
.careers-search input:focus { border-color: var(--accent-glow); background: rgba(255,255,255,0.12); }

.careers-search select {
  padding: 12px 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-size: 14px;
  background: rgba(255,255,255,0.08);
  color: white;
  outline: none;
  font-family: inherit;
  cursor: pointer;
}

.careers-search select option { color: var(--text-dark); }

.careers-page-content { padding: 60px 0; }

.careers-page-content .careers-list { max-width: 900px; margin: 0 auto; }

.careers-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.perk-card {
  text-align: center;
  padding: 28px 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,25,41,0.04);
  transition: var(--transition);
}

.perk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.perk-card .icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.perk-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.perk-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* No jobs state */
.careers-empty {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.careers-empty.show { display: block; }

.careers-empty .icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.4;
}

.careers-empty h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.careers-empty p {
  color: var(--text-light);
  font-size: 14.5px;
}

@media (max-width: 768px) {
  .careers-featured { grid-template-columns: 1fr; }
  .career-item { flex-direction: column; align-items: stretch; padding: 20px 24px; }
  .career-item .btn-apply { align-self: flex-start; }
  .careers-page-hero h1 { font-size: 32px; }
  .careers-search input, .careers-search select { width: 100%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 42px; }
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: var(--transition);
    border-bottom: 2px solid var(--gray-100);
  }

  .nav.open { transform: translateY(0); }

  .hamburger { display: flex; }

  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { height: 70vh; min-height: 500px; }
  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 16px; }

  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  .section { padding: 60px 0; }
  .section-header h2 { font-size: 28px; }

  .stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-item .num { font-size: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .all-services-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 32px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 26px; }
  .hero { height: 60vh; min-height: 420px; }
  .hero-content .badge { font-size: 11px; }
  .btn-primary, .btn-outline { padding: 12px 24px; font-size: 14px; }
  .slider-arrows { display: none; }
}
