
  :root {
    --navy: #0A0F1E;
    --navy-mid: #111827;
    --navy-light: #1a2336;
    --red: #E8311A;
    --red-dark: #c4280f;
    --red-glow: rgba(232,49,26,0.15);
    --white: #ffffff;
    --off-white: #f8f8f6;
    --gray-100: #f3f4f6;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --text-body: #374151;
    --border: rgba(255,255,255,0.08);
    --border-light: rgba(0,0,0,0.08);
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
  }


  @media (max-width: 768px) {
  .hero-content {
    transform: translateX(-8px);
  }
}


@media (max-width: 768px) {
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* 2 columns */
    gap: 10px;
  }

  .stat-card {
    width: 100%;
    height: 100px;        /* same box size */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 20px;
  }

  .footer-brand {
    grid-column: span 2; /* brand full width top lo */
  }
}

@media (max-width: 768px) {
  .cta-title {
    text-align: left;
    transform: translateX(-10px);  /* left move */
  }
}




  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text-body); background: var(--white); overflow-x: hidden; }

  /* ===== NAVBAR ===== */
  .navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 2rem; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(10,15,30,0.92); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s var(--transition);
  }
  .navbar.scrolled { background: rgba(10,15,30,0.98); box-shadow: 0 4px 40px rgba(0,0,0,0.3); }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo img { height: 36px; width: 36px; object-fit: contain; }
  .nav-logo-text { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--white); letter-spacing: -0.02em; }
  .nav-logo-text span { color: var(--red); }
  .nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
  .nav-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7); text-decoration: none; padding: 0.5rem 0.9rem; border-radius: 6px; transition: color 0.2s, background 0.2s; white-space: nowrap; }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
  .nav-dropdown { position: relative; }
  .nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-links li {
  display: flex;
  align-items: center;
}
  .nav-dropdown > a::after { content: '▾'; font-size: 0.7rem; opacity: 0.6; }
 .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;   /* ✅ FIXED */
  left: 0;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem;
  min-width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 9999;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 10px; /* prevents hover break */
}
  .nav-dropdown:hover .dropdown-menu { display: block; }
  .dropdown-menu a { display: block; padding: 0.5rem 1rem; color: rgba(255,255,255,0.75); font-size: 0.85rem; border-radius: 6px; transition: all 0.2s; }
  .dropdown-menu a:hover { background: var(--red-glow); color: var(--red); }
  .nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 0.5rem 1.25rem !important; border-radius: 8px !important; font-weight: 600 !important; }
  .nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
  .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh; background: var(--navy);
    display: flex; align-items: center; position: relative; overflow: hidden;
    padding: 100px 2rem 60px;
  }
  .hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
  .hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
  .hero-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,49,26,0.2) 0%, transparent 70%); top: -100px; right: -100px; animation: float 8s ease-in-out infinite; }
  .hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%); bottom: 0; left: -50px; animation: float 10s ease-in-out infinite reverse; }
  .hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; }
  @keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
  .hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,49,26,0.12); border: 1px solid rgba(232,49,26,0.3); border-radius: 100px; padding: 6px 16px; margin-bottom: 1.5rem; font-size: 0.8rem; font-weight: 500; color: #f87171; letter-spacing: 0.04em; text-transform: uppercase; }
  .hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse 2s ease-in-out infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
  .hero-title { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 800; line-height: 1.08; color: var(--white); letter-spacing: -0.03em; margin-bottom: 1.5rem; }
  .hero-title .accent { color: var(--red); }
  .hero-title .underline-text { position: relative; display: inline-block; }
  .hero-title .underline-text::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), transparent); border-radius: 2px; }
  .hero-desc { font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; max-width: 520px; font-weight: 300; }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
  .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: var(--white); padding: 0.9rem 2rem; border-radius: 10px; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.25s var(--transition); border: none; cursor: pointer; }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,49,26,0.35); }
  .btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,0.85); padding: 0.9rem 2rem; border-radius: 10px; font-weight: 500; font-size: 0.95rem; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); transition: all 0.25s; }
  .btn-outline:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.4); }

  /* Hero Visual */
  .hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
  .hero-card-stack { position: relative; width: 100%; max-width: 440px; }
  .hero-main-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem; backdrop-filter: blur(10px); position: relative; z-index: 2; animation: cardFloat 6s ease-in-out infinite; }
  @keyframes cardFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
  .hero-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.25rem; }
  .hero-stat { text-align: center; padding: 1rem; background: rgba(255,255,255,0.04); border-radius: 12px; border: 1px solid rgba(255,255,255,0.07); }
  .hero-stat-num { font-family: 'Syne', sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--white); }
  .hero-stat-num span { color: var(--red); }
  .hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 2px; line-height: 1.3; }
  .hero-card-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
  .tech-pill-group { display: flex; flex-wrap: wrap; gap: 8px; }
  .tech-pill { background: rgba(232,49,26,0.12); border: 1px solid rgba(232,49,26,0.25); color: #fca5a5; padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 500; }
  .floating-badge { position: absolute; background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 10px 16px; display: flex; align-items: center; gap: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); backdrop-filter: blur(10px); }
  .floating-badge-1 { top: -20px; left: -30px; animation: badgeFloat 5s ease-in-out infinite; }
  .floating-badge-2 { bottom: -20px; right: -20px; animation: badgeFloat 5s ease-in-out infinite 2.5s; }
  @keyframes badgeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  .badge-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
  .badge-icon.red { background: rgba(232,49,26,0.15); }
  .badge-icon.blue { background: rgba(59,130,246,0.15); }
  .badge-text { font-size: 0.78rem; color: var(--white); }
  .badge-text strong { display: block; font-weight: 600; font-size: 0.82rem; }
  .badge-text span { color: rgba(255,255,255,0.5); }

  /* Trust bar */
  .trust-bar { background: rgba(255,255,255,0.03); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.25rem 2rem; background: var(--navy); }
  .trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center; }
  .trust-label { font-size: 0.8rem; color: rgba(255,255,255,0.35); white-space: nowrap; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
  .trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.12); }
  .trust-items { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 500; }
  .trust-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

  /* ===== SECTIONS ===== */
  section { padding: 6rem 2rem; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
  .section-tag::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); border-radius: 2px; }
  .section-title { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; color: var(--gray-800); letter-spacing: -0.03em; margin-bottom: 1rem; }
  .section-title.light { color: var(--white); }
  .section-desc { font-size: 1.05rem; color: var(--gray-600); line-height: 1.7; max-width: 560px; font-weight: 300; }
  .section-desc.light { color: rgba(255,255,255,0.55); }

  /* STATS */
  .stats-section { background: var(--navy); padding: 5rem 2rem; position: relative; overflow: hidden; }
  .stats-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,0.06); border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06);  }
  .stat-card { padding: 2.5rem 2rem; text-align: center; background: var(--navy); transition: background 0.3s; }
  .stat-card:hover { background: rgba(232,49,26,0.06); }
  .stat-num { font-family: 'Syne', sans-serif; font-size: 3.2rem; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -0.04em; }
  .stat-num .red { color: var(--red); }
  .stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.45); margin-top: 0.5rem; }

  /* SERVICES */
  .services-section { background: var(--off-white); }
  .services-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (max-width: 992px) {

  .grid-2,
  .expertise-row {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

}

@media (max-width: 768px) {
  .contact-main-container {
    padding: 100px 15px;
  }

  .form-side,
  .info-side {
    padding: 20px;
  }
}

.services-header .section-desc {
  margin: 0 auto;
  text-align: center;
}

.services-header .link-btn {
  display: inline-flex;
  justify-content: center;
  margin-top: 1.5rem;
}
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .service-card { background: var(--white); border-radius: 16px; padding: 2rem; border: 1px solid var(--border-light); transition: all 0.3s var(--transition); position: relative; overflow: hidden; cursor: pointer; text-decoration: none; display: block; color: inherit; }
  .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
  .service-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.1); transform: translateY(-4px); border-color: rgba(232,49,26,0.2); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; background: rgba(232,49,26,0.08); transition: background 0.3s; }
  .service-card:hover .service-icon { background: rgba(232,49,26,0.15); }
  .service-name { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--gray-800); margin-bottom: 0.6rem; letter-spacing: -0.02em; }
  .service-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; font-weight: 300; }
  .service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.25rem; font-size: 0.85rem; font-weight: 600; color: var(--red); transition: gap 0.2s; }
  .service-card:hover .service-link { gap: 10px; }
  .service-card.featured { background: var(--navy); border-color: transparent; }
  .service-card.featured .service-name { color: var(--white); }
  .service-card.featured .service-desc { color: rgba(255,255,255,0.5); }
  .service-card.featured .service-icon { background: rgba(232,49,26,0.2); }
  .service-card.featured::before { background: linear-gradient(90deg, var(--red), #ff6b4a); }

  /* WHY US */
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  background: white;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* HOVER EFFECT (like services cards) */
.why-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: rgba(232,49,26,0.2);
}

/* ICON STYLE */
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff1ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* TEXT */
.why-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.why-content p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}



  .why-section { background: var(--white); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .why-features { display: flex; flex-direction: column; gap: 1.5rem; }
  .why-feature { display: flex; gap: 1rem; padding: 1.25rem; border-radius: 12px; border: 1px solid transparent; transition: all 0.3s; }
  .why-feature:hover { border-color: rgba(232,49,26,0.15); background: rgba(232,49,26,0.03); }
  .why-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(232,49,26,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
  .why-content h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--gray-800); margin-bottom: 4px; }
  .why-content p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; font-weight: 300; }
  .compliance-card { background: var(--navy); border-radius: 20px; padding: 2.5rem; color: var(--white); position: relative; overflow: hidden;  transform: translateY(-30px); }
  .compliance-card::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(232,49,26,0.2) 0%, transparent 70%); }
  .compliance-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
  .compliance-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 1.25rem; text-align: center; }
  .compliance-badge .emoji { font-size: 1.75rem; display: block; margin-bottom: 0.5rem; }
  .compliance-badge .name { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--white); }
  .compliance-badge .sub { font-size: 0.72rem; color: rgba(255,255,255,0.4); }


  .compliance-video {
  /*margin-top: 2rem;*/
  /*height: 260px;*/
  /*border-radius: 20px;*/
  /*overflow: hidden;*/
  position: relative;
  margin-bottom: 24px; /* gap between video & card */
  /*background: #0A0F1E;*/
}

/* VIDEO FIT */
.compliance-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OPTIONAL GRID OVERLAY (remove if not needed) */


  /* INDUSTRIES */
  .industries-section { background: var(--off-white); }
  .industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .industry-card { background: var(--white); border-radius: 14px; padding: 1.75rem 1.5rem; border: 1px solid var(--border-light); text-align: center; transition: all 0.3s; }
  .industry-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); border-color: rgba(232,49,26,0.2); transform: translateY(-3px); }
  .industry-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
  .industry-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--gray-800); }

  /* INSIGHTS */
  .insights-section { background: var(--white); }
  .insights-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
  .insights-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.5rem; }
  .insight-card { border-radius: 16px; overflow: hidden; border: 1px solid var(--border-light); transition: all 0.3s; text-decoration: none; color: inherit; display: flex; flex-direction: column; background: var(--white); }
  .insight-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.1); transform: translateY(-4px); }
  .insight-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
  .insight-card.featured .insight-img { height: 240px; }
  .insight-img.bg-1 { background: linear-gradient(135deg, #0A0F1E 0%, #1a2850 100%); }
  .insight-img.bg-2 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
  .insight-img.bg-4 { background: linear-gradient(135deg, #e8311a 0%, #c4280f 100%); }
  .insight-tag { position: absolute; bottom: 12px; left: 12px; background: rgba(232,49,26,0.9); color: white; font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; letter-spacing: 0.04em; text-transform: uppercase; }
  .insight-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
  .insight-meta { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 0.6rem; font-weight: 500; }
  .insight-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--gray-800); line-height: 1.4; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
  .insight-card.featured .insight-title { font-size: 1.25rem; }
  .insight-excerpt { font-size: 0.85rem; color: var(--gray-600); line-height: 1.65; font-weight: 300; flex: 1; }
  .insight-read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 1rem; font-size: 0.82rem; font-weight: 600; color: var(--red); }

  /* CTA */
  .cta-section { background: var(--navy); padding: 7rem 2rem; text-align: center; position: relative; overflow: hidden; }
  .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(232,49,26,0.1) 0%, transparent 70%); }
  .cta-title { font-family: 'Syne', sans-serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.25rem; }
  .cta-desc { font-size: 1.1rem; color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; font-weight: 300; }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .cta-email { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-top: 1.5rem; justify-content: center; }
  .cta-email a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
  .cta-email a:hover { color: var(--white); }

  /* FOOTER */
  footer { background: #050810; color: rgba(255,255,255,0.6); padding: 5rem 2rem 2rem; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-tagline { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; font-weight: 300; margin-top: 1rem; }
  .footer-socials { display: flex; gap: 10px; }
  .social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; text-decoration: none; transition: all 0.2s; }
  .social-link:hover { background: var(--red-glow); border-color: rgba(232,49,26,0.3); color: var(--red); }
  .footer-col h5 { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; letter-spacing: 0.04em; text-transform: uppercase; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col ul a { color: rgba(255,255,255,0.45); font-size: 0.875rem; text-decoration: none; transition: color 0.2s; font-weight: 300; }
  .footer-col ul a:hover { color: rgba(255,255,255,0.85); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
  .footer-legal { display: flex; gap: 1.5rem; }
  .footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
  .footer-legal a:hover { color: rgba(255,255,255,0.6); }

  /* ANIMATIONS */
  .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--transition), transform 0.7s var(--transition); }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up-delay-1 { transition-delay: 0.1s; }
  .fade-up-delay-2 { transition-delay: 0.2s; }
  .fade-up-delay-3 { transition-delay: 0.3s; }
  .link-btn { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: gap 0.2s; }
  .link-btn:hover { gap: 12px; }  

  /* MOBILE NAV */
  .mobile-nav { position: fixed; top: 72px; left: 0; right: 0; background: var(--navy-mid); border-bottom: 1px solid var(--border); padding: 1rem; display: none; flex-direction: column; gap: 4px; z-index: 999; max-height: 80vh; overflow-y: auto; }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { color: rgba(255,255,255,0.7); font-size: 0.95rem; text-decoration: none; padding: 0.75rem 1rem; border-radius: 8px; transition: all 0.2s; font-weight: 500; }
  .mobile-nav a:hover { background: rgba(255,255,255,0.07); color: var(--white); }
  .mobile-nav .mob-cta { background: var(--red); color: var(--white) !important; text-align: center; margin-top: 0.5rem; font-weight: 600; }

  /* RESPONSIVE */
  /* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insight-card.featured { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }

  /* ✅ ONLY THIS */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ✅ SEPARATE */


@media (max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    section { padding: 4rem 1.25rem; }
    .services-grid { grid-template-columns: 1fr; }
    .insights-grid { grid-template-columns: 1fr; }
    .insight-card.featured { grid-column: span 1; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
  }


  /* HERO ENTRY ANIMATION */
.hero-content > * {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 0.8s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO CARD POP ANIMATION */
.hero-main-card {
  opacity: 0;
  transform: scale(0.9);
  animation: heroPop 1s ease forwards;
  animation-delay: 1s;
}

@keyframes heroPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* 3D GLOBE TEXT */
.text-cloud {
  position: relative;
  width: 420px;
  height: 420px;
  margin: auto;
  perspective: 1000px;
}

.text-cloud span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  font-size: 19px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  transition: all 0.2s linear;
}

.services-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.services-cta .link-btn {
  display: inline-flex;
  font-size: 0.95rem;
}

/*blog 1*/


  :root {
  --primary: #E8311A;
  --bg: #0A0F1E;
  --text: #d1d5db;
  --border: rgba(255,255,255,0.08);
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: white;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 900px;
  margin: 80px auto 20px; /* 🔥 reduce space */
  padding: 20px;
}

/* ===== BACK BUTTON ===== */
.back-btn {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
}

.back-btn:hover {
  text-decoration: underline;
}

/* ===== BLOG ===== */
h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.blog-banner {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 25px;
}

.blog-card {
  background: linear-gradient(145deg, rgba(20,30,60,0.6), rgba(10,15,30,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.meta {
  color: #9ca3af;
  margin-bottom: 30px;
}

p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

h2 {
  margin-top: 30px;
  color: white;
}


/*blog 2*/


:root {
  --primary: #E8311A;
  --bg: #0A0F1E;
  --text: #d1d5db;
  --border: rgba(255,255,255,0.08);
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: white;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

/* ===== BACK BUTTON ===== */
.back-btn {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
}

.back-btn:hover {
  text-decoration: underline;
}

/* ===== CARD ===== */
.blog-card {
  background: linear-gradient(145deg, rgba(20,30,60,0.6), rgba(10,15,30,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* ===== IMAGE ===== */
.blog-banner {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 25px;
}

/* ===== TEXT ===== */
h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.meta {
  color: #9ca3af;
  margin-bottom: 25px;
}

p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
}

h2 {
  margin-top: 25px;
  color: white;
}


/*blog 3*/

:root {
  --primary: #E8311A;
  --bg: #0A0F1E;
  --text: #d1d5db;
  --border: rgba(255,255,255,0.08);
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: white;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

/* ===== BACK BUTTON ===== */
.back-btn {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
}

.back-btn:hover {
  text-decoration: underline;
}

/* ===== CARD ===== */
.blog-card {
  background: linear-gradient(145deg, rgba(20,30,60,0.6), rgba(10,15,30,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* ===== IMAGE ===== */
.blog-banner {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 25px;
}

/* ===== TEXT ===== */
h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.meta {
  color: #9ca3af;
  margin-bottom: 25px;
}

p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
}

h2 {
  margin-top: 25px;
  color: white;
}


/*blog 4*/


:root {
  --primary: #E8311A;
  --bg: #0A0F1E;
  --text: #d1d5db;
  --border: rgba(255,255,255,0.08);
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: white;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

/* ===== BACK BUTTON ===== */
.back-btn {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
}

.back-btn:hover {
  text-decoration: underline;
}

/* ===== CARD ===== */
.blog-card {
  background: linear-gradient(145deg, rgba(20,30,60,0.6), rgba(10,15,30,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* ===== IMAGE ===== */
.blog-banner {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 25px;
}

/* ===== TEXT ===== */
h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.meta {
  color: #9ca3af;
  margin-bottom: 25px;
}

p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
}

h2 {
  margin-top: 25px;
  color: white;
}


/*blog 5*/

:root {
  --primary: #E8311A;
  --bg: #0A0F1E;
  --text: #d1d5db;
  --border: rgba(255,255,255,0.08);
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: white;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

/* ===== BACK BUTTON ===== */
.back-btn {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
}

.back-btn:hover {
  text-decoration: underline;
}

/* ===== CARD ===== */
.blog-card {
  background: linear-gradient(145deg, rgba(20,30,60,0.6), rgba(10,15,30,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* ===== IMAGE ===== */
.blog-banner {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 25px;
}

/* ===== TEXT ===== */
h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.meta {
  color: #9ca3af;
  margin-bottom: 25px;
}

p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
}

h2 {
  margin-top: 25px;
  color: white;
}


/*blog 6*/

:root {
  --primary: #E8311A;
  --bg: #0A0F1E;
  --text: #d1d5db;
  --border: rgba(255,255,255,0.08);
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: white;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

/* ===== BACK BUTTON ===== */
.back-btn {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
}

.back-btn:hover {
  text-decoration: underline;
}

/* ===== CARD ===== */
.blog-card {
  background: linear-gradient(145deg, rgba(20,30,60,0.6), rgba(10,15,30,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* ===== IMAGE ===== */
.blog-banner {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 25px;
}

/* ===== TEXT ===== */
h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.meta {
  color: #9ca3af;
  margin-bottom: 25px;
}

p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
}

h2 {
  margin-top: 25px;
  color: white;
}


/*blog 7*/

:root {
  --primary: #E8311A;
  --bg: #0A0F1E;
  --text: #d1d5db;
  --border: rgba(255,255,255,0.08);
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: white;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

/* ===== BACK BUTTON ===== */
.back-btn {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
}

.back-btn:hover {
  text-decoration: underline;
}

/* ===== CARD ===== */
.blog-card {
  background: linear-gradient(145deg, rgba(20,30,60,0.6), rgba(10,15,30,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* ===== IMAGE ===== */
.blog-banner {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 25px;
}

/* ===== TEXT ===== */
h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.meta {
  color: #9ca3af;
  margin-bottom: 25px;
}

p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
}

h2 {
  margin-top: 25px;
  color: white;
}


/*blog 8*/

:root {
  --primary: #E8311A;
  --bg: #0A0F1E;
  --text: #d1d5db;
  --border: rgba(255,255,255,0.08);
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: white;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

/* ===== BACK BUTTON ===== */
.back-btn {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
}

.back-btn:hover {
  text-decoration: underline;
}

/* ===== CARD ===== */
.blog-card {
  background: linear-gradient(145deg, rgba(20,30,60,0.6), rgba(10,15,30,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* ===== IMAGE ===== */
.blog-banner {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 25px;
}

/* ===== TEXT ===== */
h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.meta {
  color: #9ca3af;
  margin-bottom: 25px;
}

p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
}

h2 {
  margin-top: 25px;
  color: white;
}

/* ===== terms ===== */

  :root {
    --navy: #0A0F1E;
    --navy-mid: #111827;
    --navy-light: #1a2336;
    --red: #E8311A;
    --red-dark: #c4280f;
    --red-glow: rgba(232,49,26,0.15);
    --white: #ffffff;
    --off-white: #f8f8f6;
    --gray-100: #f3f4f6;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --text-body: #374151;
    --border: rgba(255,255,255,0.08);
    --border-light: rgba(0,0,0,0.08);
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
  }


body {
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  background: #0A0F1E;
  color: rgba(255,255,255,0.75);
}

/* GRID BACKGROUND */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* GLOW EFFECT */
.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,49,26,0.15), transparent 70%);
  top: -100px;
  right: -100px;
  filter: blur(80px);
  z-index: 0;
}
.container {
  
  max-width: 900px;
  margin: 120px auto;
  padding: 30px;
  position: relative;
  z-index: 2;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.bg-grid,
.bg-glow {
  pointer-events: none;
}

h1 {
  font-size: 34px;
  margin-bottom: 20px;
}

h2 {
  margin-top: 60px;
  color: #E8311A;
}

h3 {
  margin-top: 25px;
}

p, li {
  line-height: 1.7;
  font-size: 15px;
}

html {
  scroll-behavior: smooth;
}

.section {
  scroll-margin-top: 100px;
}

.nav-logo {
  text-decoration: none;
}

.nav-logo-text {
  color: #ffffff !important;
}

  /* ===== NAVBAR ===== */
  .navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 2rem; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(10,15,30,0.92); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s var(--transition);
  }

    .navbar.scrolled { background: rgba(10,15,30,0.98); box-shadow: 0 4px 40px rgba(0,0,0,0.3); }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo img { height: 36px; width: 36px; object-fit: contain; }
  .nav-logo-text { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--white); letter-spacing: -0.02em; }
  .nav-logo-text span { color: var(--red); }
  .nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
  .nav-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7); text-decoration: none; padding: 0.5rem 0.9rem; border-radius: 6px; transition: color 0.2s, background 0.2s; white-space: nowrap; }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
  .nav-dropdown { position: relative; }
  .nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
  .nav-dropdown > a::after { content: '▾'; font-size: 0.7rem; opacity: 0.6; }
  .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;   /* ✅ FIXED */
  left: 0;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem;
  min-width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 9999;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 10px; /* prevents hover break */
}
  .nav-dropdown:hover .dropdown-menu { display: block; }
  .dropdown-menu a { display: block; padding: 0.5rem 1rem; color: rgba(255,255,255,0.75); font-size: 0.85rem; border-radius: 6px; transition: all 0.2s; }
  .dropdown-menu a:hover { background: var(--red-glow); color: var(--red); }
  .nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 0.5rem 1.25rem !important; border-radius: 8px !important; font-weight: 600 !important; }
  .nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
  .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }


    /* MOBILE NAV */
  .mobile-nav { position: fixed; top: 72px; left: 0; right: 0; background: var(--navy-mid); border-bottom: 1px solid var(--border); padding: 1rem; display: none; flex-direction: column; gap: 4px; z-index: 999; max-height: 80vh; overflow-y: auto; }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { color: rgba(255,255,255,0.7); font-size: 0.95rem; text-decoration: none; padding: 0.75rem 1rem; border-radius: 8px; transition: all 0.2s; font-weight: 500; }
  .mobile-nav a:hover { background: rgba(255,255,255,0.07); color: var(--white); }
  .mobile-nav .mob-cta { background: var(--red); color: var(--white) !important; text-align: center; margin-top: 0.5rem; font-weight: 600; }

    /* FOOTER */
  footer { background: #050810; color: rgba(255,255,255,0.6); padding: 5rem 2rem 2rem; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-tagline { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; font-weight: 300; margin-top: 1rem; }
  .footer-socials { display: flex; gap: 10px; }
  .social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; text-decoration: none; transition: all 0.2s; }
  .social-link:hover { background: var(--red-glow); border-color: rgba(232,49,26,0.3); color: var(--red); }
  .footer-col h5 { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; letter-spacing: 0.04em; text-transform: uppercase; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col ul a { color: rgba(255,255,255,0.45); font-size: 0.875rem; text-decoration: none; transition: color 0.2s; font-weight: 300; }
  .footer-col ul a:hover { color: rgba(255,255,255,0.85); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
  .footer-legal { display: flex; gap: 1.5rem; }
  .footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
  .footer-legal a:hover { color: rgba(255,255,255,0.6); }
  
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    section { padding: 4rem 1.25rem; }
    .services-grid { grid-template-columns: 1fr; }
    .insights-grid { grid-template-columns: 1fr; }
    .insight-card.featured { grid-column: span 1; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
  }

/* ===== insights ===== */

:root {
  --primary: #E8311A;
  --bg: #0A0F1E;
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --red: #E8311A;
  --red-dark: #c4280f;
  --white: #ffffff;
  --navy-mid: #0f172a;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: white;
}

/* ===== HEADER ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 2rem; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(10,15,30,0.92); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s var(--transition);
  }
  .navbar.scrolled { background: rgba(10,15,30,0.98); box-shadow: 0 4px 40px rgba(0,0,0,0.3); }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo img { height: 36px; width: 36px; object-fit: contain; }
  .nav-logo-text { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--white); letter-spacing: -0.02em; }
  .nav-logo-text span { color: var(--red); }
  .nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
  .nav-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7); text-decoration: none; padding: 0.5rem 0.9rem; border-radius: 6px; transition: color 0.2s, background 0.2s; white-space: nowrap; }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
  .nav-dropdown { position: relative; }
  .nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}



.nav-links li {
  display: flex;
  align-items: center;
}

 .nav-dropdown > a::after { content: '▾'; font-size: 0.7rem; opacity: 0.6; }
 .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;   /* ✅ FIXED */
  left: 0;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem;
  min-width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 9999;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 10px; /* prevents hover break */
}
  .nav-dropdown:hover .dropdown-menu { display: block; }
  .dropdown-menu a { display: block; padding: 0.5rem 1rem; color: rgba(255,255,255,0.75); font-size: 0.85rem; border-radius: 6px; transition: all 0.2s; }
  .dropdown-menu a:hover { background: var(--red-glow); color: var(--red); }
  .nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 0.5rem 1.25rem !important; border-radius: 8px !important; font-weight: 600 !important; }
  .nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
  .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }



  /* MOBILE NAV */
  .mobile-nav { position: fixed; top: 72px; left: 0; right: 0; background: var(--navy-mid); border-bottom: 1px solid var(--border); padding: 1rem; display: none; flex-direction: column; gap: 4px; z-index: 999; max-height: 80vh; overflow-y: auto; }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { color: rgba(255,255,255,0.7); font-size: 0.95rem; text-decoration: none; padding: 0.75rem 1rem; border-radius: 8px; transition: all 0.2s; font-weight: 500; }
  .mobile-nav a:hover { background: rgba(255,255,255,0.07); color: var(--white); }
  .mobile-nav .mob-cta { background: var(--red); color: var(--white) !important; text-align: center; margin-top: 0.5rem; font-weight: 600; }


.blog-img {
  width: 100%;
  height: 160px;        /* 🔥 reduce more */
  max-height: 160px;    /* 🔥 force limit */
  object-fit: cover;
  display: block;
  border-radius: 10px;
  margin-bottom: 10px;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
}



/* ===== SECTION ===== */
.section {
  max-width: 1200px;
  margin: 140px auto;
  padding: 20px;
}

h1 { font-size: 40px; }
.section-title { margin-top: 50px; font-size: 26px; }

/* ===== GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 20px;
}

/* ===== CARD ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 16px;
  padding: 20px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
}

.meta {
  font-size: 12px;
  color: #9ca3af;
  margin: 6px 0;
}

.desc {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  text-align: center;
  color: #9ca3af;
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  color: #E8311A;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.read-more:hover {
  text-decoration: underline;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}



/* ===== company ===== */

:root {
  --navy:#0A0F1E;
  --navy-mid:#111827;
  --red:#E8311A;
  --red-dark:#c4280f;
  --white:#fff;
  --text:#9ca3af;
  --border:rgba(255,255,255,0.08);
}

body {
  margin:0;
  font-family:'DM Sans',sans-serif;
  background:var(--navy);
  color:white;
}

/* ===== NAVBAR (SAME AS INDEX) ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 2rem; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(10,15,30,0.92); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s var(--transition);
  }
  .navbar.scrolled { background: rgba(10,15,30,0.98); box-shadow: 0 4px 40px rgba(0,0,0,0.3); }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo img { height: 36px; width: 36px; object-fit: contain; }
  .nav-logo-text { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--white); letter-spacing: -0.02em; }
  .nav-logo-text span { color: var(--red); }
  .nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
  .nav-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7); text-decoration: none; padding: 0.5rem 0.9rem; border-radius: 6px; transition: color 0.2s, background 0.2s; white-space: nowrap; }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
  .nav-dropdown { position: relative; }
  .nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-links li {
  display: flex;
  align-items: center;
}
  .nav-dropdown > a::after { content: '▾'; font-size: 0.7rem; opacity: 0.6; }
 .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;   /* ✅ FIXED */
  left: 0;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem;
  min-width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 9999;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 10px; /* prevents hover break */
}
  .nav-dropdown:hover .dropdown-menu { display: block; }
  .dropdown-menu a { display: block; padding: 0.5rem 1rem; color: rgba(255,255,255,0.75); font-size: 0.85rem; border-radius: 6px; transition: all 0.2s; }
  .dropdown-menu a:hover { background: var(--red-glow); color: var(--red); }
  .nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 0.5rem 1.25rem !important; border-radius: 8px !important; font-weight: 600 !important; }
  .nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
  .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

.nav-logo-text {
  font-family:'Syne';
  font-weight:700;
  color:white;
}
.nav-logo-text span { color:var(--red); }

.nav-links {
  display:flex;
  list-style:none;
}

.nav-links a {
  color:#cbd5e1;
  padding:8px 14px;
  text-decoration:none;
}

.nav-cta {
  background:var(--red);
  padding:8px 18px;
  border-radius:8px;
  color:white !important;
}

/* ===== SECTION ===== */
.section {
  max-width:1100px;
  margin:90px auto 40px;
  padding:20px;
}

.section h1 {
  font-size:40px;
  margin-bottom:10px;
}

.section h2 {
  margin-top:40px;
  color:white;
}

.section p {
  color:var(--text);
  line-height:1.8;
}

/* ===== CARD BLOCK ===== */
.card {
  background: linear-gradient(145deg, rgba(20,30,60,0.6), rgba(10,15,30,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  line-height: 1.8;
}

/* ===== LIST ===== */
ul {
  margin-top:10px;
}
li {
  margin-bottom:8px;
  color:#d1d5db;
}

/* ===== FOOTER ===== */
.footer {
  border-top:1px solid var(--border);
  padding:40px;
  text-align:center;
  color:#9ca3af;
  margin-top:60px;
}




/* ===== contact ===== */

  :root {
    --navy: #0A0F1E;
    --navy-mid: #111827;
    --navy-light: #1a2336;
    --red: #E8311A;
    --red-dark: #c4280f;
    --red-glow: rgba(232,49,26,0.15);
    --white: #ffffff;
    --off-white: #f8f8f6;
    --gray-100: #f3f4f6;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --text-body: #374151;
    --border: rgba(255,255,255,0.08);
    --border-light: rgba(0,0,0,0.08);
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
  }

.navbar {
  position: fixed; 
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem; 
  height: 72px;

  display: flex; 
  align-items: center; 
  justify-content: space-between;

  background: rgba(10,15,30,0.92); 
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
  .navbar.scrolled { background: rgba(10,15,30,0.98); box-shadow: 0 4px 40px rgba(0,0,0,0.3); }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo img { height: 36px; width: 36px; object-fit: contain; }
  .nav-logo-text { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--white); letter-spacing: -0.02em; }
  .nav-logo-text span { color: var(--red); }
  .nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
  .nav-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7); text-decoration: none; padding: 0.5rem 0.9rem; border-radius: 6px; transition: color 0.2s, background 0.2s; white-space: nowrap; }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
  .nav-dropdown { position: relative; }
  .nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-links li {
  display: flex;
  align-items: center;
}
  .nav-dropdown > a::after { content: '▾'; font-size: 0.7rem; opacity: 0.6; }
 .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;   /* ✅ FIXED */
  left: 0;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem;
  min-width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 9999;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 10px; /* prevents hover break */
}
  .nav-dropdown:hover .dropdown-menu { display: block; }
  .dropdown-menu a { display: block; padding: 0.5rem 1rem; color: rgba(255,255,255,0.75); font-size: 0.85rem; border-radius: 6px; transition: all 0.2s; }
  .dropdown-menu a:hover { background: var(--red-glow); color: var(--red); }
  .nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 0.5rem 1.25rem !important; border-radius: 8px !important; font-weight: 600 !important; }
  .nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
  .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }


body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}

/* ===== BACKGROUND ===== */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,49,26,0.15), transparent 70%);
  top: -100px;
  right: -100px;
  filter: blur(80px);
  pointer-events: none;
}

/* ===== NAVBAR ===== */



.error {
  color: #ff4d4d;
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
}

.country-select option {
  background: #111827;
  color: white;
}

.phone-group {
  display: flex;
  gap: 10px;
}

/* COUNTRY SELECT FIX */
.country-select {
  height: 48px;
  padding: 0 10px;
  box-sizing: border-box;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  border-radius: 8px;

  font-size: 14px;
  cursor: pointer;
}

/* INPUT FIX */
.phone-group select,
.phone-group input {
  height: 48px;
  padding: 0 12px;
  box-sizing: border-box;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  border-radius: 8px;

  font-size: 14px;
}

.error {
  color: #ff4d4d;
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
}


.phone-group select {
  width: 110px;
  height: 48px;

  padding: 0 8px;   /* 🔥 tighter spacing */
  box-sizing: border-box;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  border-radius: 8px;

  font-size: 14px;
  appearance: none;
  cursor: pointer;

  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 6px center; /* 🔥 arrow close */
  background-size: 16px;
}

.phone-group select option {
  background: #111827;
  color: white;
}

/* ===== PAGE ===== */
.container {
  max-width: 1100px;
  margin: 120px auto 60px;
  padding: 20px;
  position: relative;
  z-index: 2;
}

/* ===== GRID LAYOUT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===== CARD ===== */
.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

/* ===== FORM ===== */
input, textarea {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  margin-bottom: 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: white;
  border-radius: 8px;
}

button {
  background: var(--red);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  text-align: center;
  color: rgba(255,255,255,0.5);
}





/* RESPONSIVES */
/*
img, video {
  max-width: 100%;
  height: auto;
}

body {
  overflow-x: hidden;
}

.section-inner {
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: #0A0F1E;
    display: none;
    flex-direction: column;
    padding: 1rem;
    z-index: 999;
  }

  .mobile-nav a {
    padding: 12px;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .mobile-nav.active {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.compliance-video {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .compliance-video {
    margin-bottom: 20px;
  }
}

@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-desc {
    font-size: 0.9rem;
  }
}

*/

/* --- Services Page Layouts --- */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-row.reverse {
    direction: rtl; /* Flips the grid order */
}

.service-row.reverse .service-info {
    direction: ltr; /* Resets text to read left-to-right */
}

.feature-list {
    list-style: none;
    margin-top: 25px;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 800;
}

@media (max-width: 992px) {
    .service-row, .service-row.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        direction: ltr;
    }
    .service-img-wrapper {
        height: 300px;
    }
    .feature-list li {
        text-align: left;
    }
}



#bot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999; /* Ensure it's on top of everything */
    font-family: 'Segoe UI', Arial, sans-serif;
}

#bot-icon-wrapper {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ask-me-bubble {
    background: #007bff;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: bounce 2s infinite;
}

#bot-icon img {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    border: 2px solid #007bff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#chat-window {
    width: 320px;
    height: 450px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: absolute;
    bottom: 90px; /* Positions window above the robot */
    right: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hidden {
    display: none !important;
}

#chat-header {
    background: #007bff;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

#close-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bot-msg, .user-msg {
    padding: 10px 14px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.4;
    max-width: 80%;
}

.bot-msg { background: #e9e9eb; align-self: flex-start; color: #333; }
.user-msg { background: #007bff; color: white; align-self: flex-end; }

#chat-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 8px;
    background: white;
}

#user-input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    
    /* FIX: Text color must be black/dark grey */
    color: #000000 !important; 
    /* FIX: Background must be white */
    background-color: #ffffff !important; 
    
    position: relative;
    z-index: 10001;
}

/* Placeholder color ni kuda grey ga set chesthunna */
#user-input::placeholder {
    color: #888888;
}

#send-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}






















/* ===== MOBILE NAV FIX ===== */
@media (max-width: 992px) {

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;

    transform: translateX(-100%);
    transition: 0.3s ease;
    z-index: 999;
  }

  .mobile-nav.active {
    transform: translateX(0);
  }

  .mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
}





@media (max-width: 992px) {

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none; /* optional clean look */
  }
}




/* ================= MOBILE CONTACT FIX ================= */

@media (max-width: 768px) {

  /* 🔥 Reduce top space */
  .contact-main-container {
    padding: 90px 12px 40px !important;
  }

  /* 🔥 Glass wrapper fix */
  .contact-glass-wrapper {
    grid-template-columns: 1fr !important;
    padding: 20px !important;
    gap: 20px !important;
  }

  /* 🔥 Form & Info card */
  .form-side,
  .info-side {
    padding: 18px !important;
    border-radius: 18px;
  }

  /* 🔥 Heading size like ChargeBees */
  .contact-main-container h1 {
    font-size: 2rem !important;
  }

  /* 🔥 Input fields */
  .input-box {
    padding: 12px 14px !important;
    font-size: 14px;
    border-radius: 10px;
  }

  /* 🔥 Phone group fix */
  .phone-group {
    flex-direction: row;
    gap: 8px;
  }

  .country-select {
    width: 85px;
    font-size: 13px;
  }

  .mobile-input {
    font-size: 14px;
  }

  /* 🔥 Button full width */
  .btn-primary {
    width: 100% !important;
  }

}