:root {
  --deep-navy: #001F3F;
  --electric-cyan: #00E5FF;
  --royal-blue: #0056D2;
  --soft-white: #F5F7FA;
  --charcoal: #0D1117;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
}

.theme-light {
  --bg: var(--soft-white);
  --text: var(--deep-navy);
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-border: rgba(0, 90, 210, 0.2);
}

.theme-dark {
  --bg: var(--charcoal);
  --text: var(--soft-white);
  --card-bg: var(--glass-bg);
  --card-border: var(--glass-border);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
  background-color: var(--bg);
  color: var(--text);
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(13, 17, 23, 0.85);
  border-bottom: 1px solid var(--electric-cyan);
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.1);
  transition: all 0.3s ease;
  padding: 1rem 2rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Animated Logo */
.logo-wrapper {
  display: flex;
  align-items: center;
  height: 40px;
}

.logo {
  height: 100%;
  max-height: 40px;
  object-fit: contain;
  border: 2px solid var(--electric-cyan);
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
  transition: all 0.4s ease;
  animation: logoPulse 4s infinite alternate;
}

.logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--electric-cyan);
  animation: vibrate 0.3s infinite alternate;
}

@keyframes logoPulse {
  0% { box-shadow: 0 0 8px rgba(0, 229, 255, 0.4); }
  100% { box-shadow: 0 0 16px rgba(0, 229, 255, 0.7); }
}

@keyframes vibrate {
  0% { transform: scale(1.1) translateX(-1px); }
  100% { transform: scale(1.1) translateX(1px); }
}

.logo-fallback {
  display: none;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--electric-cyan);
  margin-left: 0.5rem;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  color: var(--soft-white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--electric-cyan);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--electric-cyan);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--deep-navy), var(--charcoal));
  color: var(--soft-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, transparent 20%, var(--royal-blue) 180%);
  animation: rotate 20s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.btn-primary {
  background: var(--electric-cyan);
  color: var(--deep-navy);
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.6);
}

.hero-image {
  margin-top: 2rem;
  width: 100%;
  max-width: 800px;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: block;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Glass Card Base */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.8rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 229, 255, 0.25);
  border-color: var(--electric-cyan);
}

/* Service Cards with Images */
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  min-height: 350px;
  padding: 1.8rem 1.2rem;
}

.service-img {
  width: 100%;
  max-width: 180px;
  height: 140px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: rgba(0, 90, 210, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-card h3 {
  margin: 0.4rem 0 0.7rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.service-card p {
  font-size: 1rem;
  color: var(--text);
  opacity: 0.9;
}

/* Grid Layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.8rem;
  margin-top: 2.5rem;
  padding: 0 1rem;
}

/* Sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-overview,
.why-us,
.testimonials,
.detailed-services,
.about-content,
.contact-section {
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  text-align: center;
}

.counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--electric-cyan);
  display: block;
}

.testimonial-card {
  max-width: 700px;
  margin: 2rem auto;
  text-align: center;
}

.client {
  margin-top: 1rem;
  font-style: italic;
  color: var(--royal-blue);
}

.page-header {
  background: linear-gradient(120deg, var(--deep-navy), var(--royal-blue));
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* About Page Values */
.values ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  text-align: left;
}

.values li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.05rem;
}

.values li::before {
  content: "✓";
  color: var(--electric-cyan);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* WhatsApp Button Under Services */
.whatsapp-service {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
}

.whatsapp-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.6);
  background: #128C7E;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 100;
  animation: pulse 2s infinite;
  text-decoration: none;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Floating Social Media Buttons */
.social-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.social-btn.facebook {
  background: #3b5998;
}

.social-btn.linkedin {
  background: #0A66C2;
}

.social-btn.tiktok {
  background: black;
}

.social-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* =============== DIRECT CONTACT BUTTONS =============== */

.contact-section {
  padding: 4rem 0 6rem;
}

.contact-buttons {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-title {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.contact-buttons p {
  margin-bottom: 2rem;
  opacity: 0.9;
  font-size: 1.1rem;
  line-height: 1.5;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
}

.contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  scale: 1.02;
}

.contact-btn i {
  font-size: 1.4rem;
}

/* Button Colors */
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.email-btn {
  background: linear-gradient(135deg, #D44638, #B33A2B);
}

.facebook-btn {
  background: linear-gradient(135deg, #3b5998, #2d4373);
}

.linkedin-btn {
  background: linear-gradient(135deg, #0A66C2, #084F96);
}

/* Powered by Apache */
.powered-by-footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--soft-white);
  opacity: 0.85;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .logo {
    max-height: 36px;
    padding: 3px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .card-grid {
    gap: 2rem;
    padding: 0 0.5rem;
  }
  .social-float {
    bottom: 20px;
    left: 20px;
  }
  .whatsapp-float {
    bottom: 120px;
    right: 20px;
  }
  .contact-buttons {
    padding: 1.8rem;
  }
  .contact-btn {
    padding: 0.9rem;
    font-size: 1rem;
  }
}

html {
  scroll-behavior: smooth;
}
/* =============== GPS DEVICE GALLERY =============== */

.gps-gallery {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  justify-content: center;
  flex-wrap: wrap;
}

.gps-gallery img {
  width: 100%;
  max-width: 140px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--card-border);
}

.gps-gallery img:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 229, 255, 0.25);
  border-color: var(--electric-cyan);
}

/* Responsive */
@media (max-width: 600px) {
  .gps-gallery {
    gap: 0.8rem;
  }
  .gps-gallery img {
    max-width: 110px;
    height: 100px;
  }
}