/* ==========================================================================
   MEGA SUPERB HOLDINGS (PVT) LTD - EXACT 1-TO-1 STRUCTURE REDESIGN
   Theme: Modern Futuristic Light Mode (No Emojis, Pure SVG Vector Precision)
   Fonts: Montserrat, Outfit, Inter
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- Root Color Tokens --- */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  
  --brand-deep: #061993;
  --brand-primary: #1973d1;
  --brand-bright: #2563eb;
  --brand-cyan: #00f2fe;
  --brand-emerald: #059669;
  
  --gradient-main: linear-gradient(135deg, #061993 0%, #1973d1 50%, #519ae6 100%);
  --gradient-glow: linear-gradient(90deg, rgba(6, 25, 147, 0.08), rgba(81, 154, 230, 0.12));
  --gradient-text: linear-gradient(135deg, #061993 0%, #1973d1 60%, #00f2fe 100%);
  --gradient-footer: linear-gradient(180deg, #0f172a 0%, #080c14 40%, #000000 100%);
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --border-subtle: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-brand: #519ae6;
  
  --shadow-sm: 0 4px 12px rgba(6, 25, 147, 0.04);
  --shadow-md: 0 10px 30px rgba(6, 25, 147, 0.08);
  --shadow-lg: 0 20px 45px rgba(6, 25, 147, 0.12);
  --shadow-glow: 0 0 25px rgba(81, 154, 230, 0.25);
  
  --font-heading: 'Montserrat', sans-serif;
  --font-futuristic: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  position: relative;
  line-height: 1.65;
  min-height: 100vh;
  background-color: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-pill);
  color: var(--brand-primary);
  font-family: var(--font-futuristic);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.badge-glow .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brand-primary);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(25, 115, 209, 0.6); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(25, 115, 209, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(25, 115, 209, 0); }
}

.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svg-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-main);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(6, 25, 147, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(6, 25, 147, 0.4);
}

.btn-outline {
  background: #ffffff;
  color: var(--brand-deep);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: #f8fafc;
  transform: translateY(-2px);
}

/* --- Canvas Ambient Network --- */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

/* --- Top Info Bar --- */
.top-bar { display: none !important;
  background: #061993;
  color: #ffffff;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.9;
}

.top-bar-item:hover {
  opacity: 1;
}

/* --- Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--text-secondary);
  transition: var(--transition-normal);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-deep);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* --- Navigation Dropdown --- */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-normal);
}

.dropdown-item:hover, .dropdown-item.active {
  background: rgba(25, 115, 209, 0.08);
  color: var(--brand-deep);
  transform: translateX(4px);
}

/* --- Page Header Banner --- */
.page-banner {
  padding: 4.5rem 0 3rem;
  background: linear-gradient(135deg, rgba(6, 25, 147, 0.04) 0%, rgba(25, 115, 209, 0.08) 100%);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.page-banner-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.page-banner-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 780px;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--brand-primary);
  font-weight: 600;
}

/* --- Multi-Page Layout Components --- */
.content-section {
  padding: 4.5rem 0;
}

.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.detail-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-brand);
}

.tech-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: #f1f5f9;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-deep);
}

.feature-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.feature-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.feature-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.15);
  color: var(--brand-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Banner Section --- */
.hero {
  position: relative;
  padding: 6rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.1;
  margin: 1.25rem 0;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-graphic-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(81, 154, 230, 0.2);
  border: 1px solid var(--border-medium);
  background: #ffffff;
}

.hero-graphic-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- 5 Core Value Pillars --- */
.pillars-section {
  padding: 4rem 0;
  background: #ffffff;
  border-y: 1px solid var(--border-subtle);
}

.pillars-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.pillar-card {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient-glow);
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(81, 154, 230, 0.25);
}

.pillar-card h4 {
  font-size: 1.05rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

/* --- Our Partners Section --- */
.partners-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.partners-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.client-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.client-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 90px;
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
}

.client-card img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

/* --- About Us Section --- */
.about-section {
  padding: 6.5rem 0;
  background: #ffffff;
}

.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-content h3 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.about-content p {
  font-size: 1.025rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.unique-solution-box {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.unique-solution-box .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-glow);
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-graphic-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.about-graphic-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.about-stat-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-main);
  color: #ffffff;
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-stat-badge .num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.about-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.sub-about-card {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.sub-about-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* --- What We Do --- */
.services-section {
  padding: 6.5rem 0;
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-header .section-tag {
  color: var(--brand-primary);
  font-family: var(--font-futuristic);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.65rem;
  display: block;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.85rem;
}

.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(6, 25, 147, 0.1);
  border-color: var(--border-brand);
}

.service-thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #e2e8f0;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-thumb img {
  transform: scale(1.08);
}

.service-icon-badge {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-main);
  box-shadow: 0 4px 15px rgba(6, 25, 147, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.service-body {
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--brand-deep);
}

.service-body p {
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  color: var(--text-secondary);
}

/* --- Proven Track Record Section --- */
.track-record-section {
  padding: 6.5rem 0;
  background: #ffffff;
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-counter-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-counter-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
}

.stat-counter-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--gradient-main);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(6, 25, 147, 0.25);
}

.stat-counter-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.75rem;
  color: var(--brand-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-counter-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* --- Contact Us Section --- */
.contact-section {
  padding: 6.5rem 0;
  background: var(--bg-secondary);
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-normal);
}

.form-control:focus {
  border-color: var(--brand-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(25, 115, 209, 0.15);
}

/* --- PURE OBSIDIAN BLACK FUTURISTIC FOOTER --- */
.footer {
  background: var(--gradient-footer) !important;
  color: #ffffff !important;
  position: relative;
  padding: 5.5rem 0 2.5rem;
  border-top: 3px solid var(--brand-bright);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-cyan), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-logo-badge {
  display: inline-block;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.footer-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.footer-desc {
  font-size: 0.925rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 242, 254, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  color: var(--brand-cyan);
  font-family: var(--font-futuristic);
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-title {
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--brand-cyan);
  border-radius: 2px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list a {
  color: #cbd5e1;
  font-size: 0.925rem;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-list a:hover {
  color: var(--brand-cyan);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact-item .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.2);
  color: var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 242, 254, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: #cbd5e1;
  transition: var(--transition-normal);
}

.footer-bottom a:hover {
  color: var(--brand-cyan);
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1100px) {
  .pillars-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-grid-4, .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .hero-grid, .partners-split-grid, .about-split-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 2rem;
    box-shadow: var(--shadow-md);
  }

  .mobile-toggle {
    display: block;
  }

  .pillars-grid-5, .services-grid-4, .stats-counter-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .client-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-sub-grid, .form-row-2 {
    grid-template-columns: 1fr;
  }
}


/* --- FUTURISTIC & MODERN THEME SYSTEM --- */
:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.7);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --brand-primary: #2563eb;
  --brand-cyan: #06b6d4;
  --brand-violet: #8b5cf6;
  --brand-deep: #1e1b4b;

  --border-light: rgba(226, 232, 240, 0.8);
  --border-medium: rgba(148, 163, 184, 0.3);
  --border-glow: rgba(37, 99, 235, 0.4);

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-neon: 0 0 25px rgba(37, 99, 235, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

[data-theme="dark"] {
  --bg-primary: #070b14;
  --bg-secondary: #0b1329;
  --bg-card: rgba(15, 23, 42, 0.85);
  --bg-glass: rgba(15, 23, 42, 0.75);

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;

  --brand-primary: #3b82f6;
  --brand-cyan: #06b6d4;
  --brand-violet: #a855f7;
  --brand-deep: #e2e8f0;

  --border-light: rgba(255, 255, 255, 0.1);
  --border-medium: rgba(255, 255, 255, 0.18);
  --border-glow: rgba(6, 182, 212, 0.5);

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
  --shadow-neon: 0 0 35px rgba(6, 182, 212, 0.35);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* --- ANIMATED GRADIENT TEXT --- */
.text-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 50%, #8b5cf6 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-gradient 6s linear infinite;
}

[data-theme="dark"] .text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 50%, #c084fc 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes shine-gradient {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* --- GLASSMORPHISM & FUTURISTIC CARDS --- */
.glass-card, .pillar-card, .client-card, .sub-about-card, .hero-graphic-frame {
  background: var(--bg-card) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pillar-card:hover, .client-card:hover, .sub-about-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--border-glow) !important;
  box-shadow: var(--shadow-neon) !important;
}

/* Light sweep reflection on hover */
.pillar-card::after, .client-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.65s ease;
}

.pillar-card:hover::after, .client-card:hover::after {
  transform: rotate(30deg) translateY(100%);
}

/* --- THEME SWITCHER BUTTON --- */
.theme-toggle-btn { display: none !important;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.theme-toggle-btn:hover {
  transform: rotate(15deg) scale(1.08);
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-neon);
}

/* --- TECH MARQUEE --- */
.tech-marquee-section {
  padding: 2.5rem 0;
  background: var(--bg-secondary);
  border-y: 1px solid var(--border-light);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- ANIMATED COUNTER STATS SECTION --- */
.counters-section {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.counter-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.counter-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-neon);
}

.counter-number {
  font-size: 3.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* --- FLOATING AI ASSISTANT WIDGET --- */
.floating-ai-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}

.floating-ai-trigger {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.floating-ai-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(6, 182, 212, 0.6);
}

.floating-ai-modal {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg), var(--shadow-neon);
  display: none;
  animation: fadeIn 0.3s ease;
}

.floating-ai-modal.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.top-bar, .top-bar-flex, .top-bar-info, .top-bar-item { display: none !important; height: 0 !important; overflow: hidden !important; visibility: hidden !important; opacity: 0 !important; margin: 0 !important; padding: 0 !important; }
