:root {
  --primary-color: #0F172A;
  /* Deep slate/midnight */
  --primary-light: #1E293B;
  --secondary-color: #334155;
  --accent-color: #6366F1;
  /* Fresh vibrant indigo */
  --accent-hover: #4F46E5;
  --accent-light: #E0E7FF;
  --gold-accent: #D4AF37;
  --gold-soft: #F6E7B8;
  --text-dark: #0F172A;
  --text-base: #475569;
  --text-light: #64748b;
  --bg-color: #ffffff;
  --bg-shade: #F8FAFC;
  --border-color: #E2E8F0;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --max-width: 1240px;
  --header-logo-height: 110px;
  --header-nav-height: 80px;
  --header-logo-offset-y: 10px;
  --header-logo-top-margin-desktop: 45px;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-family: var(--font-sans);
  color: var(--text-base);
  background-color: var(--bg-color);
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  margin-top: 10px;
  margin-bottom: 5px;
  min-height: 150px;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.bg-w{
  background: linear-gradient(135deg, #dddf6e 0%, #e9ebd4 45%, #d4e769 100%);
}
.text-accent {
  color: var(--accent-color);
}

.text-white {
  color: white !important;
}

.text-gray {
  color: #94a3b8 !important;
}

.fw-light {
  font-weight: 300;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.bg-light {
  background-color: var(--bg-shade);
    background: linear-gradient(135deg, #192b41 0%, #182b41 45%, #60a5fa 100%) !important;

}

.bg-dark {
  background-color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.section {
  padding: 5rem 0;
  
}

.about-section {
  background: linear-gradient(135deg, #192b41 0%, #182b41 45%, #60a5fa 100%);
  position: relative;
  overflow: hidden;
}

.about-section .section-tag {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.about-section .section-header h2,
.about-section .section-header p {
  color: #ffffff;
}

.about-section .split-content h2,
.about-section .split-content h3,
.about-section .split-content p {
  color: #ffffff;
}

.about-section .text-accent {
  color: #93c5fd;
}

.about-section .btn {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.about-section .btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.section-tag {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  background-color: var(--accent-light);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-nav-height);
  position: relative;
  overflow: visible;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  min-height: 0;
}

.header .logo img {
  height: var(--header-logo-height) !important;
  width: auto;
}

.header .logo {
  position: relative;
  z-index: 120;
  margin-top: var(--header-logo-top-margin-desktop);
  transform: translateY(calc(var(--header-logo-offset-y) * -1));
}

.header .logo img {
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  height: var(--header-nav-height);
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #000000;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  padding-bottom: 0.35rem;
  transition: color 0.3s ease;
}

.nav-links > a,
.nav-item > a {
  display: inline-block;
  padding: 0.35rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 2px 4px rgba(99, 102, 241, 0.4);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
  color: #000000;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
}

/* Dropdown Navigation */
.nav-item {
  position: relative;
  padding: 0;
  height: var(--header-nav-height);
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 240px;
  padding: 0.5rem 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 0.6rem 1.5rem;
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
  transition: background-color 0.2s;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  background-color: var(--accent-light);
  color: var(--accent-hover) !important;
  transform: translateX(4px);
}

@media (min-width: 993px) {
  .dropdown-menu {
    grid-template-columns: 1fr 1fr;
    min-width: 480px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
  border: 1px solid var(--accent-color);
  box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.39);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.23);
  color: white;
}

.btn-secondary {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

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

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
  background-color: var(--primary-color);
  color: white;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  opacity: 0.65;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1080px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  color: white;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff7dd;
  border: 1px solid rgba(246, 231, 184, 0.7);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.38) 0%, rgba(184, 134, 11, 0.3) 100%);
  box-shadow: 0 0 0 1px rgba(255, 230, 140, 0.15) inset, 0 6px 14px rgba(212, 175, 55, 0.24);
}

.hero-blue-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #dbeafe;
  border: 1px solid rgba(147, 197, 253, 0.72);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.35) 0%, rgba(37, 99, 235, 0.3) 100%);
  box-shadow: 0 0 0 1px rgba(147, 197, 253, 0.18) inset, 0 6px 14px rgba(37, 99, 235, 0.22);
}

.hero-main-title {
  color: #fff;
  font-size: clamp(2rem, 2.8vw, 3.05rem);
  line-height: 1.2;
  margin: 0;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  letter-spacing: -0.015em;
}

.hero-main-desc {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

@media (min-width: 1200px) {
  .hero-search-container {
    max-width: 920px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-search-container {
    max-width: 760px;
  }
}

.hero-subtitle {
  display: inline-block;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.hero p {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 2rem; 
  /* margin-top: 1.25rem; */ 
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 992px) {
  .hero-badges {
    gap: 0.4rem;
  }

  .hero-trust-badge,
  .hero-blue-badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.75rem;
  }

  .hero-main-title {
    white-space: normal;
    font-size: clamp(1.4rem, 5.3vw, 2.1rem);
    letter-spacing: normal;
  }

  .hero-main-desc {
    font-size: clamp(0.95rem, 3.3vw, 1.08rem);
    max-width: 92%;
  }
}

/* Stats Section */
.stats-section {
  padding: 3rem 0;
  background-color: var(--primary-color);
  color: white;
  position: relative;
  z-index: 20;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-card {
  position: relative;
}

.stat-card:not(:first-child)::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #cbd5e1;
}

/* Split Layout / About */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-content p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.industry-card.with-img:hover .industry-img {
  transform: scale(1.05);
}

.industry-card.with-img:hover .industry-title {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.2));
  padding-bottom: 1.75rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
  background-color: var(--bg-shade);
}

.service-card.clicked {
  border-color: var(--gold-accent);
  background: linear-gradient(135deg, #fffdf7 0%, #f5c527 100%);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.28);
}

.service-card.clicked .icon-wrapper {
  background-color: var(--gold-accent);
  color: #ffffff;
}

.service-card:hover .icon-wrapper {
  background-color: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: var(--accent-light);
  color: var(--accent-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.icon-wrapper svg {
  width: 28px;
  height: 28px;
}

/* Home: What We Do section enhancements */
.what-we-do-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.16), transparent 36%),
    radial-gradient(circle at 88% 82%, rgba(99, 102, 241, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.what-we-do-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 85%);
}

.what-we-do-section .container {
  position: relative;
  z-index: 1;
}

.what-we-do-section .section-header {
  margin-bottom: 3rem;
}

.what-we-do-section .section-header h2,
.what-we-do-section .section-header p {
  color: var(--text-dark);
}

.what-we-do-section .section-tag {
  color: var(--accent-color);
  background-color: var(--accent-light);
  border: none;
}

.what-we-do-section .section-header p {
  max-width: 640px;
  margin: 0.5rem auto 0;
  color: var(--text-light);
}

.what-we-do-section .service-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.42);
  color: var(--text-dark);
}

.what-we-do-section .service-card::after {
  content: '';
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 0.85rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f6e7b8 0%, #d4af37 55%, #b8860b 100%);
  opacity: 0;
  transition: var(--transition);
}

.what-we-do-section .service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.78);
  box-shadow: 0 24px 40px -24px rgba(212, 175, 55, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #fff9ea 100%);
  color: var(--text-dark);
}

.what-we-do-section .service-card:hover::after {
  opacity: 1;
}

.what-we-do-section .icon-wrapper {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(99, 102, 241, 0.08));
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: var(--accent-color);
}

.what-we-do-section .service-card:hover .icon-wrapper {
  background: linear-gradient(135deg, #f6e7b8 0%, #d4af37 100%);
  color: #111827;
  border-color: rgba(212, 175, 55, 0.82);
}

.what-we-do-section .btn-outline {
  color: #0f172a;
  border-color: rgba(212, 175, 55, 0.7);
  background: rgba(255, 255, 255, 0.92);
}

.what-we-do-section .btn-outline:hover {
  color: #111827;
  border-color: #d4af37;
  background: linear-gradient(135deg, #f6e7b8 0%, #d4af37 100%);
}

/* Dark Section Utility - For About, Services, Contact pages */
.section-dark,
.section.page-header-dark {
  background: linear-gradient(135deg, #192b41 0%, #182b41 45%, #60a5fa 100%) !important;
  color: #ffffff;
}

.section-dark .section-tag,
.section.page-header-dark .section-tag {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6,
.section.page-header-dark h1,
.section.page-header-dark h2,
.section.page-header-dark h3,
.section.page-header-dark h4,
.section.page-header-dark h5,
.section.page-header-dark h6 {
  color: #ffffff;
}

.section-dark p,
.section.page-header-dark p {
  color: rgba(255, 255, 255, 0.95);
}

.section-dark .text-accent,
.section.page-header-dark .text-accent {
  color: #93c5fd;
}

.section-dark .text-light,
.section.page-header-dark .text-light {
  color: rgba(255, 255, 255, 0.7);
}

/* Industries */
.industries-premium-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #192b41 0%, #182b41 45%, #60a5fa 100%);
}

.industries-premium-section::before {
  content: none;
}

.industries-premium-section::after {
  content: none;
}

.industries-premium-section .container {
  position: relative;
  z-index: 1;
}

.industries-premium-section .section-tag {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.industries-premium-section .section-header h2,
.industries-premium-section .section-header p {
  color: #ffffff;
}

.industries-premium-section .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.industries-premium-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.industries-premium-section .industry-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.industries-premium-section .industry-card.with-img {
  background: white;
  overflow: hidden;
}

.industries-premium-section .industry-card.with-img .industry-title {
  color: var(--text-dark);
}

.industries-premium-section .industry-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.industries-premium-section .industry-card.with-img:hover {
  background: white;
}

.industry-card {
  background: var(--bg-shade);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--text-dark);
  text-align: center;
  transition: var(--transition);
}

.industry-card.with-img {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg-color);
}

.industry-card .industry-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
  transition: transform 0.5s ease;
}

.industry-card.with-img .industry-title {
  padding: 1.25rem 1rem;
  font-size: 1.125rem;
  z-index: 2;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.industry-card.with-img .industry-arrow {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.18);
  color: #8a6a05;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.industry-card:hover {
  background: linear-gradient(135deg, #f9e7b0 0%, #d4af37 52%, #b8860b 100%);
  color: #111827;
  border-color: var(--gold-accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.industry-card.clicked {
  border-color: var(--gold-accent);
  box-shadow: 0 10px 30px rgba(255, 196, 0, 0.35);
}

.industry-card.with-img.clicked .industry-title {
  background: linear-gradient(180deg, #d6a00c 0%, var(--gold-accent) 100%);
  color: #111827;
}

.industry-card.with-img.clicked .industry-img {
  transform: scale(1.03);
  filter: saturate(1.1);
}

.industry-card.with-img:hover .industry-title {
  background: linear-gradient(180deg, #f7e2a2 0%, #d4af37 100%);
  color: #111827;
}

.industry-card.with-img:hover .industry-arrow {
  transform: translateX(4px);
  background: rgba(17, 24, 39, 0.18);
  color: #111827;
}

.industry-card.with-img:hover .industry-img {
  transform: scale(1.05);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--primary-color) url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  position: relative;
  z-index: 1;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(99, 102, 241, 0.8));
  z-index: -1;
}

.cta-section h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
}

/* Trusted Brands / Clients */
.trusted-brands-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(212, 175, 55, 0.1), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(99, 102, 241, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.brand-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.brand-logo-card {
  min-height: 120px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  transition: var(--transition);
}

.brand-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: var(--shadow-md);
}

.brand-logo-img {
  width: 100%;
  max-width: 240px;
  max-height: 74px;
  min-height: 0;
  object-fit: contain;
}

/* Global Reach Map */
.map-layout {
  display: block;
}

.map-container {
  position: relative;
  background-color: var(--primary-color);
  background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.map-img {
  width: 100%;
  height: auto;
  opacity: 0.4;
  filter: contrast(1.2);
  display: block;
}

.map-marker {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--accent-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 0 rgba(99, 102, 241, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(99, 102, 241, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
}

.map-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.map-line {
  fill: none;
  stroke: var(--accent-light);
  stroke-width: 0.3;
  stroke-dasharray: 1;
  animation: dash 10s linear infinite;
  opacity: 0.8;
}

@keyframes dash {
  to {
    stroke-dashoffset: -20;
  }
}

.map-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.region-card {
  padding: 1.5rem;
  background: white;
  border-left: 4px solid var(--accent-color);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.region-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.region-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.region-card p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-base);
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-brand .logo img {
  height: 150px !important;
  width: auto;
  margin: 0px;
  min-height: 0;
  margin-bottom: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-heading {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
  color: #94a3b8;
}

.footer-links a {
  color: #94a3b8;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social-link svg {
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
  flex-shrink: 0;
  transform: translateY(0.02em);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .split-layout .section-header,
  .split-content .section-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .split-image {
    order: -1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    border: none;
  }

  .stat-card::before {
    display: none !important;
  }
}

/* Search Bar Styles */
.hero-search-container {
  width: 560px;
  margin: 0 auto 1rem;
  position: relative;
  display: flex;
}

.hero-suggestions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.suggest-tag {
  color: #fff7dd;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(212, 175, 55, 0.75);
  border-radius: 9999px;
  transition: var(--transition);
  text-decoration: none;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.32) 0%, rgba(184, 134, 11, 0.25) 100%);
  box-shadow: 0 0 0 1px rgba(255, 230, 140, 0.15) inset, 0 6px 14px rgba(212, 175, 55, 0.2);
}

.suggest-tag:hover {
  background: linear-gradient(135deg, #f6e7b8 0%, #d4af37 60%, #b8860b 100%);
  color: #1f2937;
  border-color: #f6e7b8;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.32);
}

.hero-search-input {
  width: 100%;
  padding: 1.3rem 2.1rem;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 1.16rem;
  font-family: var(--font-sans);
  box-shadow: var(--shadow-md);
  outline: none;
  transition: var(--transition);
}

.hero-search-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.hero-search-btn {
  position: absolute;
  right: 8px;
  top: 8px;
  bottom: 8px;
  padding: 0 1.85rem;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.hero-search-btn:hover {
  background-color: var(--accent-hover);
}

@media (max-width: 768px) {
  .header .logo {
    margin-top: 0;
    transform: none;
  }

  .header .logo img {
    margin: 0;
  }

  .hero-content {
    margin-top: 0.5rem;
  }

  .hero-search-container {
    max-width: 100%;
    margin: 1rem auto 0.85rem;
  }

  .hero-search-input {
    padding: 1rem 1.1rem;
    font-size: 0.96rem;
    border-radius: 14px;
  }

  .hero-search-btn {
    top: 5px;
    bottom: 5px;
    right: 5px;
    padding: 0 1rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 5rem 0 3rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    height: auto;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-color);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease;
    visibility: hidden;
    text-align: center;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    visibility: visible;
  }

  .nav-links > a,
  .nav-item > a {
    display: block;
    height: auto;
    min-height: 44px;
    justify-content: center;
    padding: 0.5rem 0;
  }

  .nav-item {
    height: auto;
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }

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

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Additional text alignments on mobile */
  .section-header h2 {
    font-size: 2rem;
  }

  .logo .text-accent,
  .logo span {
    font-size: 1.2rem !important;
  }

  .nav-item {
    padding: 0;
  }

  .nav-item:hover .dropdown-menu {
    display: none !important;
  }

  .dropdown-menu {
    display: none !important;
  }

    /* Industries page mobile stability */
    .industries-page .nav-container {
      height: 72px;
    }

    .industries-page .header .logo img {
      height: 56px !important;
    }

    .industries-page .section-header {
      padding: 0 0.5rem;
    }

    .industries-page .hero-search-container {
      width: 100% !important;
      max-width: 100% !important;
      margin-top: 1rem !important;
    }

    .industries-page .hero-search-input {
      padding-right: 7rem;
    }

    .industries-page .hero-search-btn {
      padding: 0 0.95rem;
      font-size: 0.88rem;
    }

    .industries-page .industry-card .industry-img {
      height: 170px;
    }

    .industries-page .industry-card.with-img .industry-title {
      font-size: 1rem;
    }

    .footer-brand .logo img {
      height: 56px !important;
    }
}
/* Hero Slider Styles */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  z-index: 0;
  display: flex;
  animation: hero-slide 18s cubic-bezier(0.8, 0, 0.2, 1) infinite;
}

.hero-slide {
  width: 33.3333%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.9));
  opacity: 0.65;
}

.slide-1 {
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80');
}
.slide-2 {
  background-image: url('images/hero-bg-2.jpg');
}
.slide-3 {
  background-image: url('images/hero-bg-3.jpg');
}

@keyframes hero-slide {
  0%, 25% { transform: translateX(0); }
  33%, 58% { transform: translateX(-33.3333%); }
  66%, 91% { transform: translateX(-66.6666%); }
  100% { transform: translateX(0); /* Jump back or slide back. Given standard sliders, slide back is okay */ }
}

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, #173075 0%, #2d4477 55%, #2454a1 100%);
  color: #ffffff;
  font-size: 0.8rem;
  padding: 0.5rem 0;
  font-family: var(--font-sans);
  font-weight: 600;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
  font-weight: 700;
}

.top-bar a:hover {
  color: rgba(255, 255, 255, 0.82);
}

/* Hero Text Box styling */
.hero-text-box {
  /* background: rgba(15, 23, 42, 0.7); */
  /* backdrop-filter: blur(8px); */
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  display: inline-block;
  max-width: 800px;
  margin: 0 auto;
  /* border: 1px solid rgba(255, 255, 255, 0.15); */
  box-shadow: var(--shadow-lg);
}

.hero-text-box h2 {
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 0.5rem;
  }
}
