/* ===== SOUVENIR FONT ===== */
@import url('https://fonts.cdnfonts.com/css/souvenir');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #015486;
  --navy-dark: #013a5e;
  --navy-light: #0270b3;
  --gold: #f5a623;
  --gold-light: #ffc04d;
  --cyan: #00c6ff;
  --green: #27ae60;
  --red: #e74c3c;
  --white: #ffffff;
  --off-white: #f4f7fc;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --card-bg: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(1,84,134,0.10);
  --shadow-md: 0 8px 40px rgba(1,84,134,0.15);
  --shadow-lg: 0 20px 60px rgba(1,84,134,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-sans: 'Souvenir', 'Souvenir Std', Georgia, 'Times New Roman', serif;
  --font-hindi: 'Noto Sans Devanagari', 'Souvenir', Georgia, serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Souvenir for all elements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Souvenir', 'Souvenir Std', Georgia, serif;
  letter-spacing: -0.01em;
}
p, span, a, li, td, th, input, button, select, label, nav, div {
  font-family: 'Souvenir', 'Souvenir Std', 'Noto Sans Devanagari', Georgia, serif;
}

/* Devanagari (Hindi) characters — use Noto Sans Devanagari */
@font-face {
  font-family: 'Souvenir';
  src: local('Noto Sans Devanagari');
  unicode-range: U+0900-097F, U+1CD0-1CFF, U+A8E0-A8FF;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f4f8; }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(1,84,134,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(1,84,134,0.4);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 0;
  background: transparent;
  padding: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.logo-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover {
  color: white;
  background: rgba(255,255,255,0.15);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Lang Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}
.lang-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  width: 22px;
  text-align: center;
}
.toggle-track {
  width: 38px;
  height: 20px;
  background: rgba(255,255,255,0.25);
  border-radius: 10px;
  position: relative;
  transition: background var(--transition);
}
.toggle-thumb {
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform var(--transition);
}
.lang-toggle.hi-active .toggle-thumb {
  transform: translateX(18px);
}
.lang-toggle.hi-active .toggle-track {
  background: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #011f3f 0%, #013a5e 30%, #015486 60%, #0270b3 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,198,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,166,35,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0,198,255,0.08) 0%, transparent 50%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease forwards;
}
.hero-badge i { font-size: 0.9rem; }
.hero-title {
  animation: fadeInUp 0.7s ease 0.1s forwards;
  opacity: 0;
}
/* Small label above the main name */
.hero-brand-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-title-main {
  display: block;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 900;
  color: white;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff, #00c6ff, #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title-sub {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-top: 8px;
  letter-spacing: 0.3px;
}
/* Bilingual name confirmation */
.hero-name-bilingual {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 5px 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin: 10px 0 4px;
  backdrop-filter: blur(6px);
}
.hero-name-bilingual strong {
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: 0.5px;
}
.hero-desc {
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 28px auto 36px;
  line-height: 1.75;
  font-weight: 500;
  animation: fadeInUp 0.7s ease 0.25s forwards;
  opacity: 0;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s forwards;
  opacity: 0;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), #e8900a);
  color: white;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 34px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(245,166,35,0.4);
  transition: all var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,166,35,0.6);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 34px;
  border-radius: 50px;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 52px;
  animation: fadeInUp 0.7s ease 0.55s forwards;
  opacity: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 40px;
  display: inline-flex;
  backdrop-filter: blur(10px);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  text-align: center;
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: linear-gradient(90deg, var(--gold) 0%, #e8900a 100%);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marqueeRoll 30s linear infinite;
}
.marquee-inner span {
  font-size: 0.88rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.3px;
  padding-right: 60px;
}
@keyframes marqueeRoll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION COMMONS ===== */
.services-section, .cyber-section, .how-section, .why-section, .contact-section {
  padding: 90px 0;
}
.cyber-section {
  background: linear-gradient(180deg, #f0f6ff 0%, #e8f2ff 100%);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(1,84,134,0.08);
  color: var(--navy);
  border: 1px solid rgba(1,84,134,0.15);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cyber-tag { background: rgba(0,198,255,0.08); color: #0077aa; border-color: rgba(0,198,255,0.25); }
.green-tag { background: rgba(39,174,96,0.08); color: var(--green); border-color: rgba(39,174,96,0.25); }
.gold-tag { background: rgba(245,166,35,0.1); color: #c07d00; border-color: rgba(245,166,35,0.3); }
.red-tag { background: rgba(231,76,60,0.08); color: var(--red); border-color: rgba(231,76,60,0.25); }

.section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 500;
}

.services-category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 28px;
}

/* ===== BHUMI SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.info-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
}
.service-card.info::before {
  background: linear-gradient(90deg, var(--green), #2ecc71);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card.bhumi:hover { border-color: rgba(1,84,134,0.2); }
.service-card.info:hover { border-color: rgba(39,174,96,0.2); }
.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(1,84,134,0.1), rgba(1,84,134,0.06));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon i {
  font-size: 1.4rem;
  color: var(--navy);
}
.service-card.info .card-icon {
  background: linear-gradient(135deg, rgba(39,174,96,0.1), rgba(39,174,96,0.06));
}
.service-card.info .card-icon i { color: var(--green); }
.card-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(1,84,134,0.06);
  line-height: 1;
}
.service-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 14px;
  font-weight: 500;
}
.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: rgba(1,84,134,0.08);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 20px;
}
.service-card.info .card-tag {
  background: rgba(39,174,96,0.1);
  color: var(--green);
}

/* ===== CYBER CARDS ===== */
.cyber-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.cyber-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 22px;
  border: 1px solid #dbeafe;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.cyber-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00c6ff, #0070f3);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.cyber-card:hover::after { transform: scaleX(1); }
.cyber-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,112,243,0.12);
  border-color: rgba(0,198,255,0.3);
}
.cyber-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #e8f4fd, #dbeafe);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all var(--transition);
}
.cyber-card:hover .cyber-icon-wrap {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
.cyber-icon-wrap i {
  font-size: 1.6rem;
  color: var(--navy);
  transition: color var(--transition);
}
.cyber-card:hover .cyber-icon-wrap i { color: white; }
.cyber-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.cyber-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 500;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  background: linear-gradient(180deg, #fff 0%, #f0f6ff 100%);
}
.steps-container {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.step-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(39,174,96,0.2);
}
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(39,174,96,0.1);
  line-height: 1;
  margin-bottom: -8px;
}
.step-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(39,174,96,0.3);
}
.step-icon i { font-size: 1.4rem; color: white; }
.step-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 500;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: #27ae60;
  font-size: 1.2rem;
  align-self: center;
  opacity: 0.5;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.why-section .section-header h2 { color: white; }
.why-section .section-header p { color: rgba(255,255,255,0.7); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.4);
}
.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(245,166,35,0.2), rgba(245,166,35,0.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon i { font-size: 1.6rem; color: var(--gold-light); }
.why-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  font-weight: 500;
}

/* ===== CONTACT ===== */
.contact-section {
  background: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: all var(--transition);
}
.contact-card-item:hover {
  border-color: rgba(1,84,134,0.2);
  box-shadow: var(--shadow);
}
.contact-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { font-size: 1.2rem; color: white; }
.contact-card-item h4 {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.contact-card-item p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 500;
}
.contact-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-top: 2px;
}
.contact-link:hover { color: var(--navy); }
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  justify-content: center;
}
.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c3e);
  color: white;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}
.call-btn {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  box-shadow: 0 6px 20px rgba(1,84,134,0.3);
}
.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(1,84,134,0.5);
}

/* Map Panel */
.map-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.map-placeholder {
  background: linear-gradient(135deg, #011f3f, #013a5e, #015486);
  border-radius: var(--radius);
  padding: 60px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.map-inner { position: relative; z-index: 1; }
.map-pin-icon {
  font-size: 4rem;
  color: var(--gold);
  display: block;
  margin: 0 auto 16px;
  animation: pulsePing 2s ease-in-out infinite;
}
@keyframes pulsePing {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.map-loc-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}
.map-loc-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all var(--transition);
}
.map-open-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Quick Tags */
.quick-services-panel {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.quick-services-panel h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.qtag {
  background: white;
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}
.qtag:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: white;
  padding: 6px;
  object-fit: contain;
}
.footer-brand h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: white;
}
.footer-brand p { font-size: 0.82rem; font-weight: 600; }
.footer-links-col h4 {
  font-size: 0.84rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.footer-disclaimer {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.28) !important;
  margin-top: 4px;
}

/* ===== SPEED DIAL FAB ===== */
.fab-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.fab-main {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 24px rgba(1,84,134,0.5);
  transition: all var(--transition);
  position: relative;
  z-index: 2;
}
.fab-main:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(1,84,134,0.65);
}
.fab-main.open {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  transform: rotate(45deg) scale(1.05);
}
.fab-child {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.7);
  transition: opacity 0.25s ease calc((var(--i) - 1) * 0.07s),
              transform 0.25s ease calc((var(--i) - 1) * 0.07s);
  flex-direction: row-reverse;
  position: relative;
}
.fab-container.open .fab-child {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.fab-child a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.fab-child a:hover {
  transform: scale(1.12);
}
#fab-wa a {
  background: linear-gradient(135deg, #25d366, #128c3e);
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
}
#fab-call a {
  background: linear-gradient(135deg, #015486, #0270b3);
  box-shadow: 0 4px 16px rgba(1,84,134,0.4);
}
.fab-tooltip {
  background: rgba(20,20,30,0.88);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

/* Map embed */
.map-embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
}
.map-embed-wrap iframe {
  border-radius: var(--radius);
  width: 100%;
}
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(1,84,134,0.4);
  z-index: 999;
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="zoom-in"] {
  transform: scale(0.92);
}
[data-aos="fade-right"] {
  transform: translateX(-30px);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .contact-grid { gap: 28px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 16px;
    width: 100%;
    text-align: left;
  }
  .hamburger { display: flex; }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 24px 28px;
  }
  .stat-divider { width: 60px; height: 1px; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }

  .steps-container { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .step-card { max-width: 100%; width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .cyber-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .cyber-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
