/* ═══════════════════════════════════════════
   CONTACT & CONNECT INFOTECH — STYLESHEET
   style.css
═══════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─────────────────── */
:root {
  --blue-900: #030712;
  --blue-800: #0a0f1d;
  --blue-700: #0e1529;
  --blue-600: #0d9488;
  --blue-500: #00d2ff;
  --blue-400: #00f5a0;
  --blue-300: #38bdf8;
  --blue-100: #ccfbf1;
  --blue-50:  #f0fdfa;

  --grad-primary: linear-gradient(135deg, #00f5a0 0%, #00d2ff 100%);
  --grad-hero:    linear-gradient(135deg, #030712 0%, #081125 50%, #02233b 100%);
  --grad-stats:   linear-gradient(135deg, #00d2ff 0%, #059669 100%);

  --text-dark:    #0f172a;
  --text-body:    #334155;
  --text-muted:   #64748b;
  --text-light:   #f8fafc;

  --bg-page:   #f8fafc;
  --bg-card:   #ffffff;
  --bg-alt:    #f1f5f9;
  --border:    #e2e8f0;

  --glass-bg:     rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.18);

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(0, 245, 160, 0.06);
  --shadow-md:   0 8px 32px rgba(0, 210, 255, 0.08);
  --shadow-lg:   0 24px 64px rgba(0, 245, 160, 0.12);
  --shadow-card: 0 4px 24px rgba(15,23,42,0.05);

  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Poppins', sans-serif;
}

/* Dark mode */
[data-theme="dark"] {
  --bg-page:  #050814;
  --bg-card:  #0b1120;
  --bg-alt:   #080c17;
  --border:   #1e293b;
  --text-dark:  #f8fafc;
  --text-body:  #cbd5e1;
  --text-muted: #94a3b8;
  --glass-bg:     rgba(255,255,255,0.03);
  --glass-border: rgba(255,255,255,0.06);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35);
}

/* Theme-aware Bootstrap overrides */
.text-muted {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .text-dark:not(.btn):not([class*="btn-"]) {
  color: var(--text-dark) !important;
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--text-body);
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

/* Prevent scrolling while loader is active */
body:not(.loaded) {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }

/* ─── LOADING SCREEN ─────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0f1c3f 0%, #060913 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
  overflow: hidden;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Zoom out the card content smoothly when hiding */
#loader.hidden .loader-glass-card {
  transform: scale(0.9) translateY(-10px);
  opacity: 0;
  filter: blur(8px);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.7s, filter 0.7s;
}

.loader-glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 48px;
  width: 90%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transform: scale(1) translateY(0);
  opacity: 1;
  filter: blur(0);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.loader-logo-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
  animation: breath 3s ease-in-out infinite;
  margin-bottom: 24px;
}

.loader-logo-container img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.loader-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.loader-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #06b6d4 0%, #8b5cf6 100%);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.8);
  transition: width 0.1s ease;
}

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

.loader-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  animation: textPulse 1.8s ease-in-out infinite alternate;
}

.loader-subtitle {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}

@keyframes breath {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(139, 92, 246, 0.3);
  }
}

@keyframes textPulse {
  0% { opacity: 0.6; }
  100% { opacity: 0.95; }
}

/* ─── NAVBAR ─────────────────────────────── */
#mainNav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: var(--transition);
  z-index: 1000;
}

[data-theme="dark"] #mainNav {
  background: rgba(10,15,30,0.92);
}

#mainNav.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-logo .bi,
.brand-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo .bi {
  background: var(--grad-primary);
  font-size: 18px;
  color: white;
}

.brand-logo-img {
  object-fit: contain;
  background: white;
  padding: 4px;
  border: 1px solid var(--border);
}

.brand-accent { color: var(--blue-500); }

.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transition: transform 0.25s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link:hover { color: var(--blue-500) !important; }

.navbar-toggler {
  border: none;
  font-size: 22px;
  color: var(--text-dark);
  background: none;
  padding: 4px 8px;
}

/* Dark toggle */
.dark-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}

.dark-toggle:hover {
  background: var(--blue-50);
  border-color: var(--blue-300);
  color: var(--blue-500);
}

[data-theme="dark"] .dark-toggle:hover {
  background: var(--bg-alt);
}

/* ─── BUTTONS ────────────────────────────── */
.btn-primary-grad {
  background: var(--grad-primary);
  color: white !important;
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary-grad::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary-grad:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary-grad:hover::before { opacity: 1; }
.btn-primary-grad:active { transform: translateY(0); }

.btn-outline-glass {
  background: rgba(255,255,255,0.1);
  color: white !important;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 13px 28px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-outline-glass:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* For dark/light contexts (contact form reset btn) */
.contact-form-card .btn-outline-glass {
  color: var(--text-body) !important;
  background: transparent;
  border: 1.5px solid var(--border);
}

.contact-form-card .btn-outline-glass:hover {
  background: var(--bg-alt);
  color: var(--text-dark) !important;
}

/* ─── GLASS CARD ─────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
}

/* ─── SECTION HELPERS ────────────────────── */
.section-pad { padding: 96px 0; }
.section-alt  { background: var(--bg-alt); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-500);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

[data-theme="dark"] .section-eyebrow {
  background: rgba(37,99,235,0.15);
  border-color: rgba(37,99,235,0.3);
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.section-body {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
}

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

/* ─── HERO ───────────────────────────────── */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  opacity: 0.88;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  width: fit-content;
}

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

.stat-num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  opacity: 0.75;
  letter-spacing: 0.5px;
  margin-top: 4px;
  display: block;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
}

.scroll-down-arrow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── ABOUT ──────────────────────────────── */
.about-visual { position: relative; }

.about-img-card {
  position: relative;
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-img-card img {
  border-radius: calc(var(--radius-lg) - 4px);
  width: 100%;
  object-fit: cover;
  max-height: 420px;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  backdrop-filter: none !important;
  border-radius: var(--radius-md) !important;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  z-index: 2;
}

.about-badge-float .bi-award-fill { font-size: 28px; }

.about-badge-float strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.about-badge-float small {
  font-size: 11px;
  color: var(--text-muted);
}

.about-features { margin-top: 24px; }

.about-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-body);
}

.about-feat-item .bi-check-circle-fill { color: var(--blue-500); font-size: 17px; flex-shrink: 0; margin-top: 1px; }

/* ─── SERVICES ───────────────────────────── */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  animation-delay: var(--delay);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200, #bfdbfe);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--ic) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  color: var(--ic);
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--ic);
  color: white;
  transform: scale(1.08);
}

.service-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover { gap: 9px; color: var(--blue-600); }

/* CTA service card */
.service-cta-card {
  background: var(--grad-primary) !important;
  border: none !important;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-cta-card h4,
.service-cta-card p { color: white !important; }
.service-cta-card p { opacity: 0.85; }

.service-cta-icon {
  font-size: 48px;
  opacity: 0.4;
  margin-bottom: 12px;
}

.service-cta-card .btn-primary-grad {
  background: rgba(255,255,255,0.2) !important;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.service-cta-card:hover { transform: translateY(-6px); }

/* ─── WHY CHOOSE US ──────────────────────── */
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-300);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--blue-500);
  margin-bottom: 18px;
  transition: var(--transition);
}

[data-theme="dark"] .why-icon { background: rgba(37,99,235,0.15); }

.why-card:hover .why-icon {
  background: var(--grad-primary);
  color: white;
}

.why-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── STATS SECTION ──────────────────────── */
.stats-section {
  padding: 96px 0;
  background:
    url('https://images.unsplash.com/photo-1556761175-4b46a572b786?w=1600&q=70') center/cover no-repeat fixed;
  position: relative;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-stats);
  opacity: 0.92;
}

.stat-card {
  position: relative;
  z-index: 2;
  color: white;
  padding: 12px;
}

.stat-icon {
  font-size: 36px;
  opacity: 0.6;
  margin-bottom: 10px;
}

.stat-counter {
  display: inline-block;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
}

.stat-plus {
  display: inline-block;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  vertical-align: top;
  margin-top: 2px;
}

.stat-label {
  display: block;
  font-size: 13px;
  opacity: 0.8;
  margin-top: 8px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ─── GALLERY ────────────────────────────── */
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  aspect-ratio: 1 / 1;
}

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

.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37,99,235,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 32px;
  color: white;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

#lightboxCaption {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-top: 14px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* ─── BRANCHES ───────────────────────────── */
.branch-card {
  padding: 0;
  overflow: hidden;
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  backdrop-filter: none !important;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.branch-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
}

.branch-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.branch-header h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px;
}

.branch-tag {
  font-size: 11px;
  font-weight: 600;
  background: var(--blue-50);
  color: var(--blue-500);
  padding: 2px 10px;
  border-radius: 100px;
}

[data-theme="dark"] .branch-tag {
  background: rgba(37,99,235,0.15);
}

.branch-details {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.branch-details p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-body);
  margin-bottom: 10px;
  line-height: 1.5;
}

.branch-details p:last-child { margin-bottom: 0; }

.branch-details .bi {
  color: var(--blue-500);
  margin-top: 2px;
  flex-shrink: 0;
}

.branch-details a:hover { color: var(--blue-500); }

.branch-map { height: 200px; overflow: hidden; }

.branch-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3);
}

[data-theme="dark"] .branch-map iframe { filter: grayscale(0.5) brightness(0.7) invert(0.9); }

/* ─── TESTIMONIALS ───────────────────────── */
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 80px;
  font-family: Georgia, serif;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.3;
}

.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testi-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.testi-text {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.testi-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-100);
}

.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testi-author small {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── CONTACT ────────────────────────────── */
.contact-form-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  backdrop-filter: none !important;
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 6px;
}

.form-control {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 14px;
  padding: 11px 14px;
  transition: var(--transition);
}

.form-control::placeholder { color: var(--text-muted); }
.form-control:focus {
  background: var(--bg-card);
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
  outline: none;
  color: var(--text-dark);
}

.form-success-msg {
  background: #dcfce7;
  color: #166534;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-theme="dark"] .form-success-msg {
  background: rgba(22,163,74,0.2);
  color: #86efac;
}

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

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-info-card:hover { border-color: var(--blue-300); transform: translateX(4px); }

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.contact-info-card strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-card a,
.contact-info-card span {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
  word-break: break-all;
  overflow-wrap: break-word;
}

.contact-info-card a:hover { color: var(--blue-500); }

/* ─── FOOTER ─────────────────────────────── */
.site-footer { background: var(--blue-900); color: rgba(255,255,255,0.75); }

.footer-top { padding: 72px 0 48px; }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255,255,255,0.6);
}

.footer-brand .nav-logo { color: white; }

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--grad-primary);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--blue-300); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-legal {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}

.footer-legal a { color: rgba(255,255,255,0.45); }
.footer-legal a:hover { color: var(--blue-300); }

/* ─── FLOATING BUTTONS ───────────────────── */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 990;
}

.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.fab-btn:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(0,0,0,0.25); }

.fab-whatsapp { background: #25d366; color: white; }
.fab-call     { background: var(--grad-primary); color: white; }
.fab-top      { background: var(--bg-card); color: var(--text-dark); border: 1px solid var(--border); }

[data-theme="dark"] .fab-top { background: var(--bg-alt); border-color: var(--border); }

/* ─── SCROLL REVEAL ANIMATIONS ───────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-up    { transform: translateY(30px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ─── REDUCED MOTION ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right { transition: none; }
  .hero-bg { animation: none; }
  .scroll-down-arrow { animation: none; }
  .particle { display: none; }
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 991px) {
  .hero-stats { padding: 16px 20px; gap: 18px; }
  .about-badge-float { right: 0; }
}

@media (max-width: 767px) {
  .section-pad { padding: 64px 0; }
  .hero-section { padding: 100px 0 60px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat-divider { display: none; }
  .contact-form-card { padding: 28px 20px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 575px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary-grad,
  .hero-buttons .btn-outline-glass { text-align: center; justify-content: center; }
  .stat-counter { font-size: 36px; }
}

/* Utility */
.text-primary-grad { color: var(--blue-500); }

/* ─── MOCK CONSOLE DASHBOARD ──────────────── */
.hero-dashboard-container {
  background: rgba(11, 17, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
}

.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00f5a0;
  box-shadow: 0 0 10px #00f5a0;
  animation: pulse-dot 1.5s infinite alternate;
}

@keyframes pulse-dot {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

.dash-badge {
  margin-left: auto;
  background: rgba(0, 245, 160, 0.12);
  color: #00f5a0;
  border: 1px solid rgba(0, 245, 160, 0.25);
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.dash-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dash-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.dash-chart-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.dash-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 600;
}

.text-small { font-size: 11px; }

.dash-chart-bars {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100px;
  padding-top: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dash-chart-bar {
  width: 10%;
  height: var(--h);
  background: rgba(0, 210, 255, 0.2);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 0.5s ease;
}

.dash-chart-bar.active {
  background: var(--grad-primary);
  box-shadow: 0 0 15px rgba(0, 245, 160, 0.5);
}

.bar-lbl {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--text-muted);
}

.dash-footer {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

/* ─── METHODOLOGY STEPPER ─────────────────── */
.methodology-stepper-container {
  position: relative;
  margin-top: 50px;
}

.stepper-line {
  position: absolute;
  top: 150px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 245, 160, 0.1);
  z-index: 1;
  display: none;
}

@media (min-width: 768px) {
  .stepper-line { display: block; }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  height: 100%;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: #00f5a0;
  box-shadow: 0 10px 30px rgba(0, 245, 160, 0.1);
}

.step-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0, 245, 160, 0.3);
}

.step-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* ─── EXPANSION BRANCH (COMING SOON) ────── */
.coming-soon-branch {
  border: 1px dashed var(--blue-400) !important;
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
}

.coming-soon-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 245, 160, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.coming-soon-divider {
  width: 60px;
  height: 3px;
  background: var(--grad-primary);
  border-radius: 2px;
}

/* ─── CAREERS ────────────────────────────── */
.career-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.career-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-300);
}

.career-badge {
  background: rgba(0, 210, 255, 0.1);
  color: var(--blue-500);
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
}

.loc-badge {
  background: var(--bg-alt);
  color: var(--text-body);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

[data-theme="dark"] .loc-badge {
  color: var(--text-dark);
}

.req-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.req-list li {
  display: flex;
  align-items: center;
  font-size: 14.5px;
  color: var(--text-body);
  margin-bottom: 8px;
}

.req-list li:last-child {
  margin-bottom: 0;
}

.req-list li .bi-patch-check-fill {
  font-size: 16px;
  flex-shrink: 0;
}

/* ─── ACCENTURE THEME LOADER OVERRIDES ───── */
#loader {
  background: #06070a !important; /* Premium dark background */
}

#loader::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, rgba(236, 72, 153, 0.05) 50%, transparent 80%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.loader-glass-card {
  background: rgba(10, 11, 18, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.05) !important;
  position: relative;
  z-index: 2;
}

.loader-progress-fill {
  background: linear-gradient(90deg, #a855f7 0%, #ec4899 100%) !important;
  box-shadow: 0 0 16px rgba(236, 72, 153, 0.9) !important;
}

/* ─── PORTAL LOGIN PAGE (ACCENTURE THEMED) ── */
.login-page-body {
  background: #06070a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  font-family: var(--font);
}

.login-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, rgba(236, 72, 153, 0.03) 50%, transparent 85%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.login-glass-card {
  background: rgba(10, 11, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 90%;
  max-width: 440px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  z-index: 2;
  position: relative;
}

.login-brand-logo {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 12px;
  padding: 4px;
  object-fit: contain;
}

.accenture-arrow {
  color: #a855f7;
  font-weight: 800;
  font-family: monospace, sans-serif;
  margin-left: 2px;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}

.login-form-group {
  position: relative;
  margin-bottom: 22px;
}

.login-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
}

.login-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: var(--radius-sm);
  color: white !important;
  font-size: 14px;
  padding: 13px 16px 13px 44px;
  transition: var(--transition);
}

.login-control::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

.login-control:focus {
  border-color: #a855f7 !important;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2) !important;
  outline: none;
  background: rgba(255, 255, 255, 0.04) !important;
}

.pass-toggle-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 4px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.pass-toggle-btn:hover {
  color: white;
}

.accenture-accent-btn {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  color: white !important;
  border: none;
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(168, 85, 247, 0.2);
}

.accenture-accent-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(168, 85, 247, 0.35);
}

.accenture-accent-btn:active {
  transform: translateY(0);
}

/* ─── TEAM GALLERY ───────────────────────── */
.custom-pills .nav-link {
  background: var(--bg-card);
  color: var(--text-body);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1.2rem;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.custom-pills .nav-link.active {
  background: var(--grad-primary);
  color: #030712 !important;
  border-color: transparent;
  font-weight: 600;
}

.custom-pills .nav-link:hover:not(.active) {
  background: var(--bg-alt);
  color: var(--text-dark);
  border-color: var(--text-muted);
}

.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-400);
}

.team-name {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.team-role {
  color: var(--text-muted);
  font-weight: 500;
}

.filter-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

