@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-dark: #060913;
  --bg-card: rgba(13, 20, 38, 0.6);
  --bg-card-hover: rgba(20, 30, 58, 0.85);
  --bg-nav: rgba(6, 9, 19, 0.75);
  
  --primary: #0ea5e9;
  --primary-rgb: 14, 165, 233;
  --secondary: #6366f1;
  --secondary-rgb: 99, 102, 241;
  --accent: #10b981;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-inverse: #0f172a;
  
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(14, 165, 233, 0.3);
  
  --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
  --gradient-dark: linear-gradient(180deg, #060913 0%, #0d1527 100%);
  --gradient-glow: radial-gradient(circle at center, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(14, 165, 233, 0.15);
  --shadow-glow-secondary: 0 0 30px rgba(99, 102, 241, 0.15);
  
  /* Layout */
  --header-height: 85px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  background-image: var(--gradient-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Navigation Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  height: 75px;
  background-color: rgba(6, 9, 19, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  color: var(--text-main);
  font-weight: 700;
  font-size: 24px;
}

.logo img, .logo svg {
  width: 180px;
  height: 54px;
  transition: var(--transition);
}

.header.scrolled .logo img,
.header.scrolled .logo svg {
  width: 160px;
  height: 48px;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  padding: 0 20px;
  font-size: 15px;
  font-weight: 500;
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--text-muted);
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
  color: var(--text-main);
}

.nav-item:hover .nav-link::after,
.nav-item.active .nav-link::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Dropdowns & Mega Menus */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(9, 15, 30, 0.98);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  min-width: 240px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  pointer-events: none;
}

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

.dropdown-link {
  display: block;
  padding: 12px 25px;
  font-size: 14.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.dropdown-link:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.03);
  padding-left: 30px;
}

/* Mega Menu */
.mega-menu-wrapper {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background-color: rgba(8, 12, 24, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
  pointer-events: none;
  padding: 40px 0;
}

.header.scrolled + .mega-menu-wrapper,
.header.scrolled .mega-menu-wrapper {
  top: 75px;
}

.nav-item:hover .mega-menu-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
}

.mega-menu-sidebar {
  border-right: 1px solid var(--border);
  padding-right: 30px;
}

.mega-menu-sidebar h3 {
  font-size: 24px;
  margin-bottom: 12px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mega-menu-sidebar p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.mega-menu-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.mega-menu-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.mega-menu-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 15px;
}

.mega-menu-card:hover .mega-menu-card-icon {
  background: var(--gradient-primary);
  color: var(--text-inverse);
}

.mega-menu-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-main);
}

.mega-menu-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Call to Action Button in Header */
.nav-cta {
  display: flex;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-main);
  border: none;
  box-shadow: var(--shadow-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.btn-primary:hover {
  box-shadow: 0 0 35px rgba(99, 102, 241, 0.35);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(14, 165, 233, 0.05);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.nav-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-main);
  border-radius: 5px;
  transition: var(--transition);
}

/* Sections Base */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-light {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

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

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: var(--primary);
  font-size: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 38px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--text-muted);
  font-size: 16px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 45%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-title {
  font-size: 58px;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 30%, #93c5fd 70%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item h3 {
  font-size: 32px;
  color: var(--text-main);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Visual Art */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--gradient-primary);
  filter: blur(120px);
  opacity: 0.15;
  z-index: 1;
}

.tech-globe-art {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* Services Page & Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.1), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(14, 165, 233, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 30px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: var(--text-inverse);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-main);
}

.service-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* Solutions Page & Tabs */
.solutions-showcase {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
}

.solutions-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  color: var(--primary);
  background: rgba(14, 165, 233, 0.08);
}

.tab-btn.active {
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.1) inset;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.solution-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  animation: fadeIn 0.5s ease forwards;
}

.solution-content.active {
  display: grid;
}

.solution-info h3 {
  font-size: 32px;
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solution-info p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 15.5px;
}

.solution-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 25px;
  margin-bottom: 35px;
}

.sol-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-main);
}

.sol-feat-item i {
  color: var(--accent);
}

.solution-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.solution-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 9, 19, 0.9) 100%);
  z-index: 2;
}

.solution-visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solution-content:hover .solution-visual img {
  transform: scale(1.05);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* About & Certification Styling */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 15.5px;
}

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

.about-feat-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.about-feat-card i {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 12px;
}

.about-feat-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.about-feat-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Certifications Showcase */
.certifications-section {
  padding: 60px 0 100px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
}

.cert-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--secondary);
  box-shadow: var(--shadow-glow-secondary);
  transform: translateY(-5px);
}

.cert-badge-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 28px;
  border: 1px dashed rgba(99, 102, 241, 0.3);
}

.cert-card:hover .cert-badge-icon {
  background: var(--secondary);
  color: var(--text-main);
  border-style: solid;
}

.cert-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-main);
}

.cert-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Case Studies Styles */
.case-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  color: var(--text-main);
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.case-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.case-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-img-wrapper img {
  transform: scale(1.06);
}

.case-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(6, 9, 19, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
}

.case-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-info h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-main);
  line-height: 1.4;
}

.case-info p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.case-stats {
  display: flex;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  gap: 30px;
}

.case-stat-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2px;
}

.case-stat-lbl {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Global Reach Styles */
.global-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.map-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
}

.global-map-svg {
  width: 100%;
  height: auto;
  opacity: 0.85;
}

.map-pin {
  position: absolute;
  cursor: pointer;
  z-index: 5;
}

.map-pin-pulse {
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--primary);
}

.map-pin-pulse::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3.5); opacity: 0; }
}

.map-pin .tooltip {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(9, 15, 30, 0.95);
  border: 1px solid var(--primary);
  color: var(--text-main);
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.map-pin:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Map Pins Coordinates */
.pin-ahmedabad { top: 62%; left: 63.8%; } /* India */
.pin-newyork { top: 41%; left: 28%; }   /* USA */
.pin-london { top: 32%; left: 47%; }    /* UK */
.pin-dubai { top: 54%; left: 57.5%; }    /* UAE */

.reach-details h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.reach-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 35px;
}

.reach-item {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.reach-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--primary);
}

.reach-flag {
  font-size: 28px;
  display: flex;
  align-items: center;
}

.reach-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.reach-info p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* Contact Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-details-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-method-card {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-method-card:last-child {
  margin-bottom: 0;
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-method-text h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-method-text p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Contact Form */
.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 45px;
  position: relative;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: span 2;
}

.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.form-control {
  background: rgba(6, 9, 19, 0.6);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.15);
  background: rgba(6, 9, 19, 0.85);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-feedback {
  margin-top: 15px;
  font-size: 14.5px;
  display: none;
}

.form-feedback.success {
  color: var(--accent);
  display: block;
}

/* Map Embed Wrapper */
.map-embed {
  margin-top: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.2);
}

/* Call to Action Grid Section */
.cta-banner {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: var(--primary);
  filter: blur(120px);
  opacity: 0.15;
}

.cta-banner h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.cta-banner p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 35px;
  font-size: 16px;
}

/* Testimonial slider */
.testimonial-section {
  position: relative;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 850px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 45px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}

.testimonial-quote-icon {
  font-size: 45px;
  color: rgba(14, 165, 233, 0.15);
  margin-bottom: 25px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 30px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
}

.testimonial-meta h4 {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 2px;
}

.testimonial-meta p {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

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

.dot.active {
  background: var(--primary);
  width: 25px;
  border-radius: 10px;
}

/* Footer Styles */
.footer {
  background-color: #03050a;
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img,
.footer-logo svg {
  width: 180px;
  height: 54px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gradient-primary);
  color: var(--text-inverse);
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.footer-title {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2.5px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-icon {
  color: var(--primary);
  font-size: 16px;
  margin-top: 3px;
}

.footer-contact-text h4 {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 3px;
}

.footer-contact-text p {
  color: var(--text-muted);
  font-size: 13.5px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* Floating Widgets */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.08);
}

.float-whatsapp {
  background-color: #25d366;
}

.float-call {
  background-color: #0ea5e9;
  background-image: var(--gradient-primary);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-title { font-size: 46px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-tabs { gap: 10px; }
  .solution-content { grid-template-columns: 1fr; gap: 30px; }
  .solution-visual img { height: 300px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .global-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .header.scrolled {
    height: 70px;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(6, 9, 19, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 40px;
    overflow-y: auto;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid var(--border);
  }
  
  .nav-link {
    padding: 20px 0;
    font-size: 18px;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  
  .nav-link::after {
    display: none;
  }
  
  /* Accordion styles for mobile submenus */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 15px 15px;
    display: none;
  }
  
  .nav-item:hover .dropdown-menu {
    display: block;
  }
  
  .mega-menu-wrapper {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    padding: 0 0 15px 15px;
    display: none;
  }
  
  .nav-item:hover .mega-menu-wrapper {
    display: block;
  }
  
  .mega-menu-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }
  
  .mega-menu-sidebar {
    border-right: none;
    padding-right: 0;
    display: none;
  }
  
  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-title { font-size: 38px; }
  .hero-subtitle { margin: 0 auto 30px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { height: 350px; }
  
  .services-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .floating-widgets {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .section-title { font-size: 30px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .cert-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 25px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group-full { grid-column: span 1; }
  .logo img, .logo svg { width: 140px; }
}

/* Client Logos Section */
.clients-section {
  padding: 50px 0;
  background: rgba(255, 255, 255, 0.01);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 10;
}

.clients-title {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 35px;
}

.clients-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.client-logo-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: rgba(13, 20, 38, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: var(--transition);
  cursor: default;
}

.client-logo-card i {
  font-size: 20px;
  color: var(--text-muted);
  transition: var(--transition);
}

.client-logo-card span {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.client-logo-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.client-logo-card:hover i {
  color: var(--primary);
}

@media (max-width: 768px) {
  .clients-grid {
    gap: 15px;
  }
  .client-logo-card {
    padding: 12px 20px;
  }
}

