    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    section, header, footer {
     padding-left: 5%;
     padding-right: 5%;
    }
    img {
    max-width: 100%;
    height: auto;
   }


    :root {
      --primary: #0066cc;
      --primary-dark: #004999;
      --accent: #ff6b35;
      --dark: #0a1929;
      --light: #f8fafc;
      --gray: #64748b;
      --border: rgba(255, 255, 255, 0.1);
    }

    html, body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: var(--dark);
      overflow-x: hidden;
      background: var(--light);
      overflow-x: hidden; /* Prevents horizontal white space */
    }
    body {
  
}
    
    .language-popup {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.75);
      justify-content: center;
      align-items: center;
      z-index: 3000;
    }
    /* put in your CSS file (e.g. about.css) */
#languagePopup { display: none; }          /* default hidden to avoid flicker */
.language-popup.show { display: flex !important; } /* show when JS decides */
#langMenu { display: none; }
#langMenu.open { display: block !important; }

    .language-popup.show {
      display: flex !important;
    }
    #langMenu.open { display: block !important; }
    
    .language-popup .fade-out {
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .language-popup h3 { color: var(--light); }
    .popup-box {
      background: linear-gradient(135deg, var(--accent) 0%, #ffd700 100%);
      color: var(--light);
      padding: 2rem;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 0 020px rgba(255, 204, 0, 0.3);
    }
    .popup-box h3 { margin-bottom: 1rem; color: var(--light); }
    .language-options button {
      margin: 8px;
      padding: 10px 20px;
      font-size: 1rem;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      background: var(--dark);
      color: var(--light);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .language-options button:hover {
      background: var(--accent);
    }

    .hidden { display: none !important; }
     
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* This creates the transparent 'Glass' look */
    background: rgba(10, 25, 47, 0.8); 
    backdrop-filter: blur(5px); /* Blurs the website behind it */
    -webkit-backdrop-filter: blur(10px);
    
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}
/* Add this to your main body or a main container like <main> or <div id="content"> */
.fade-in-content {
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.truck-container {
    text-align: center;
    position: relative;
    width: 200px;
}

/* The Truck Shape */
.truck {
    position: relative;
    width: 100px;
    height: 50px;
    margin: 0 auto;
    animation: truck-bounce 0.5s infinite;
}

/* --- GPS Beacon & Pulse Effect --- */
.gps-beacon {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #00d4ff; /* Tech Cyan */
    border-radius: 50%;
    z-index: 10;
}

/* The actual "Sonar" rings */
.gps-beacon::before,
.gps-beacon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #00d4ff;
    border-radius: 50%;
    animation: gps-pulse 1.5s infinite ease-out;
    opacity: 0;
}

.gps-beacon::after {
    animation-delay: 0.75s; /* Second ring starts later */
}

/* Pulse Animation Logic */
@keyframes gps-pulse {
    0% {
        width: 6px;
        height: 6px;
        opacity: 0.8;
    }
    100% {
        width: 40px;
        height: 40px;
        opacity: 0;
    }
}

/* --- Refined Truck Styles for 2026 Look --- */
.truck-cabin {
    position: absolute;
    width: 28px; /* Slightly wider for better proportion */
    height: 32px;
    background: #0a84ff;
    border-radius: 4px 10px 4px 4px; /* Curved windshield look */
    left: 0;
    bottom: 12px;
}

.truck-body {
    position: absolute;
    width: 75px;
    height: 42px;
    background: #ffffff;
    border-radius: 3px;
    right: 0;
    bottom: 12px;
    box-shadow: inset -5px 0 10px rgba(0,0,0,0.05); /* Soft shadow for depth */
}

/* Keep your existing loader-wrapper, road, and wheel styles! */
.wheel {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    bottom: 0;
    border: 2px solid #ffffff;
}

.wheel-1 { left: 15px; }
.wheel-2 { right: 10px; }

/* Road Line Animation */
.road {
    width: 150px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    margin: 10px auto;
    position: relative;
    overflow: hidden;
}

.road::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 100%;
    background: #0a84ff;
    animation: road-move 0.8s infinite linear;
}

.loading-text {
    color: #ffffff;
    font-size: 10px;
    letter-spacing: 3px;
    margin-top: 15px;
    font-weight: 600;
}

/* Animations */
@keyframes truck-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes road-move {
    0% { left: -50px; }
    100% { left: 150px; }
}

/* Class to hide loader */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}


    /* Header */
    header {
      position: fixed;
      width: 100%;
      background: rgba(10, 25, 41, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 1rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      transition: all 0.3s ease;
    }

    header.scrolled {
      padding: 0.75rem 5%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .logo {
      height: 50px;
      transition: transform 0.3s ease;
    }

    .logo:hover {
      transform: scale(1.05);
    }

    .company-name {
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      letter-spacing: -0.5px;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 2.5rem;
    }

    nav a {
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      position: relative;
      transition: color 0.3s ease;
    }

    nav a::before {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease;
    }

    nav a:hover {
      color: white;
    }

    nav a:hover::before {
      width: 100%;
    }

    .menu-icon {
      display: none;
      font-size: 1.75rem;
      color: white;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .menu-icon:hover {
      color: var(--accent);
    }

    @media screen and (max-width: 768px) {
    .company-name {
        font-size: 1.2rem;  /* smaller on mobile */
        text-shadow: 1px 1px 5px rgba(0,0,0,0.2); /* lighter shadow */
        white-space: nowrap;  /* prevent wrapping if you prefer */
        overflow: hidden;
        text-overflow: ellipsis; /* truncate if too long */
        display: none;
    }
}

.menu-icon {
  font-size: 30px;
  cursor: pointer;
  display: none; /* Hide on desktop */
  color: #fff;
  transition: color 0.3s ease;
}
.menu-icon:hover {
  color: var(--accent);
}

/* SIDE DRAWER MENU */
.side-menu {
  position: fixed;
  top: 0;
  left: -250px; /* hidden initially */
  width: 250px;
  height: 100vh;
  background-color: var(--dark); /* deep professional blue */
  padding-top: 40px;
  transition: 0.3s ease;
  z-index: 9999;
}

.side-menu ul {
  display: block;
  list-style: none;
  padding-left: 20px;
}

.side-menu ul li {
  margin: 20px 0;
}

.side-menu ul li a {
  text-decoration: none;
  font-size: 18px;
}

.close-menu {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}

.close-menu:hover {
  color: var(--accent);
}

/* Show hamburger & hide normal menu on mobile */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .menu-icon {
    display: block;
    order: 2;
  }
  .logo {
    order: 1;
  }
}

/* Background slideshow */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slideshow img.active {
  opacity: 1;
}

/* Dark overlay for readability */
.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero {
    position: relative;
    overflow: visible !important;
}

.hero-content {
    position: relative;
    z-index: 20;
}

.overlay {
    pointer-events: none;
    z-index: 5;
}

.hero-slideshow {
    z-index: 1;
}

.tracking-card {
    position: relative;
    z-index: 30;
}

#trackingResult {
    margin-top: 15px;
    position: relative;
    z-index: 40;
}


  .hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 8% 4rem;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(--dark);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slideshow img.active { opacity: 1; }

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 850px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero p { font-size: clamp(1rem, 4vw, 1.5rem); }

.hero h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, #ffd700 100%);
  -webkit-text-fill-color: transparent;
}

/* ============================= */
/* 4. BUTTONS & TRACKING CARD    */
/* ============================= */
.btn-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.btn-primary { background: var(--accent); color: white; }
.btn-secondary { background: rgba(255,255,255,0.1); color: white; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); }

.tracking-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 0 auto;
  max-width: 600px;
}

.tracking-input-group {
  display: flex;
  background: white;
  padding: 5px;
  border-radius: 50px; /* Modern pill shape */
  overflow: hidden;
}

.tracking-input-group input {
  flex: 1;
  border: none;
  padding: 15px 25px;
  font-size: 16px; /* Crucial for iOS */
  outline: none;
}

.tracking-input-group button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0 30px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
}

/* ============================= */
/* 5. THE PROFESSIONAL TIMELINE  */
/* ============================= */
.status-timeline {
  margin-top: 25px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  color: #333;
  text-align: left;
}

.timeline-step {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  position: relative;
}

.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 20px;
  width: 2px;
  height: 100%;
  background: #eee;
}

.step-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ddd;
  margin-top: 5px;
  z-index: 2;
}

.step-icon.active { background: #238636; }

/* ============================= */
/* 6. MOBILE RESPONSIVE (768px)  */
/* ============================= */
@media (max-width: 768px) {
  .company-name { display: none; }
  
  .menu-icon { display: block; color: white; font-size: 2rem; cursor: pointer; }
  
  nav ul { display: none; }

  .hero { padding: 6rem 5% 2rem; height: auto; }
  
  .hero h1 { font-size: 2.2rem; }

  .btn-group {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 2rem;
  }

  .btn { width: 100%; justify-content: center; }

  .tracking-card { padding: 1.5rem; border-radius: 12px; }

  .tracking-input-group {
    flex-direction: column;
    background: transparent;
    gap: 10px;
  }

  .tracking-input-group input, 
  .tracking-input-group button {
    width: 100%;
    height: 55px;
    border-radius: 10px;
  }
}
   
    /* --- Desktop Defaults --- */
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.btn-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.tracking-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.tracking-input-group {
  display: flex;
  background: white;
  padding: 5px;
  border-radius: 12px;
}

.tracking-input-group input {
  flex: 1;
  border: none;
  padding: 15px;
  font-size: 16px;
  outline: none;
  border-radius: 8px;
}

.tracking-input-group button {
  background: #ff6b35; /* Your orange accent */
  color: white;
  border: none;
  padding: 0 25px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

/* --- MOBILE & TABLET (768px and below) --- */
@media screen and (max-width: 768px) {
  .hero-content {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  /* Stack Buttons */
  .btn-group {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 2.5rem;
  }

  .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    justify-content: center;
  }

  /* Tracking Card on Mobile */
  .tracking-card {
    padding: 20px;
    border-radius: 5px;
  }

  .tracking-input-group {
    flex-direction: column;
    background: transparent;
    gap: 10px;
  }

  .tracking-input-group input, 
  .tracking-input-group button {
    width: 100%;
    height: 55px; /* Large touch target */
    border-radius: 10px;
  }
}

/* --- Professional Timeline Style (Result) --- */
.status-timeline {
  margin-top: 25px;
  text-align: left;
  background: white;
  padding: 20px;
  border-radius: 12px;
  color: #333;
}

.timeline-step {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  position: relative;
}

.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 20px;
  width: 2px;
  height: 100%;
  background: #e0e0e0;
}

.step-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ddd;
  margin-top: 5px;
  z-index: 2;
}

.step-icon.active {
  background: #238636; /* Green for success */
  box-shadow: 0 0 10px rgba(35, 134, 54, 0.4);
}

.step-content h4 {
  font-size: 0.9rem;
  margin: 0;
  color: #002147;
}

.step-content p {
  font-size: 0.8rem;
  color: #666;
  margin: 2px 0 0;
}

    /* ============================= */
/*      TRACKING SYSTEM CARD     */
/* ============================= */

.tracking-card {
  margin: 3rem auto 0;
  padding: 2.5rem;
  max-width: 650px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 0 30px rgba(255, 204, 0, 0.08);
  text-align: center;
  animation: fadeInUp 1s ease;
}
.hero-content,
.tracking-card {
    position: relative;
    z-index: 10;
}


.tracking-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 0.8rem;
}

.tracking-card h2 i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.tracking-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* Input + Button */
.tracking-input-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tracking-input-group input {
  flex: 1 1 150px;
  padding: 1rem 1.2rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
}

.tracking-input-group button {
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--accent), #ffd700);
  color: #000;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 204, 0, 0.4);
}

.tracking-input-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 204, 0, 0.6);
}

/* Result Box */
#trackingResult {
  margin-top: 2rem;
  text-align: left;
  color: white;
  background: rgba(0, 0, 0, 0.35);

  display: block;
  animation: fadeInUp 0.6s ease;
}

#trackingResult.show {
  display: block;
}



    /* Section Styles */
    section {
      padding: 6rem 5%;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
      animation: fadeInUp 0.8s ease;
    }

    .section-header h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--light);
      margin-bottom: 1rem;
      letter-spacing: -1px;
    }
    .section-header h2 span {
      background: linear-gradient(135deg, var(--accent) 0%, #ffd700 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      
    }

    .section-header p {
      font-size: 1.2rem;
      color: var(--light);
      max-width: 600px;
      margin: 0 auto;
    }

    /* About Section */
    .about-section {
      background: linear-gradient(135deg, #0a1929 0%, #1e3a5f 100%);
    }

    .about-section h2 span {
      background: linear-gradient(135deg, var(--accent) 0%, #ffd700 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .about-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      align-items: center;
    }
    .about-text {
      flex: 1 1 50%;
    }
    /* Make the video responsive */
.about-video video {
  width: 80%;
  height: 50%;
  border-radius: 12px;
  object-fit: cover;
}

/* Mobile view: stack vertically */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-text, .about-video {
    flex: 1 1 100%;
  }

  .about-video video {
    height: 250px;
  }
}


    .about-text h3 {
      font-size: 2rem;
      color: var(--light);
      margin-bottom: 1.5rem;
      font-weight: 700;
    }

    .about-text p {
      font-size: 1.1rem;
      color: var(--light);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }
    

    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .stat-item {
      text-align: center;
      padding: 2rem;
      background: linear-gradient(135deg, var(--light) 0%, white 100%);
      border-radius: 20px;
      transition: transform 0.3s ease;
    }

    .stat-item:hover {
      transform: translateY(-10px);
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      color: var(--accent);
      display: block;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      color: var(--gray);
      font-weight: 500;
    }

    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .service-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      position: relative;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .service-content {
      padding: 2rem;
    }

    .service-content h3 {
      font-size: 1.5rem;
      color: var(--dark);
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .service-content p {
      color: var(--gray);
      line-height: 1.7;
    }

    .service-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 1.75rem;
      color: white;
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    }

    .cta-content {
      position: relative;
      z-index: 1;
    }

    .cta-section h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      margin-bottom: 2rem;
      font-weight: 800;
    }
    .cta-section h2 span {
      background: linear-gradient(135deg, var(--accent) 0%, #ffd700 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;

    }

    /* Footer */
/* ============================= */
/*          FOOTER STYLE         */
/* ============================= */

footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 5% 2rem;
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

/* Each Column */
.footer-col {
  flex: 1;
  min-width: 220px;
  margin: 15px;
  color: #f0f0f0;
}

.footer-col h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #ffcc00; /* accent color */
  margin-top: 6px;
  border-radius: 2px;
}

.footer-col p {
  font-size: 0.95rem;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
}

.footer-col i {
  color: #ffcc00;
  font-size: 1.1rem;
  min-width: 20px;
}

.footer-col a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-all;
}

.footer-col a:hover {
  color: #ffcc00;
}

/* Quick Links Styling */
.footer-col.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column; /* Vertical layout */
  gap: 8px;
}

.footer-col.quick-links ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col.quick-links ul li a:hover {
  color: #ffcc00;
}

/* Social Media Icons */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-5px);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dev-signature a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dev-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6b7280; /* Subtle Gray */
  font-weight: 700;
}

.dev-icon-box {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.dev-logo {
  width: 100%;
  height: auto;
  filter: grayscale(100%); /* Makes it match the client site perfectly */
  transition: filter 0.3s ease;
}

/* --- Hover Effects --- */
.dev-signature a:hover .dev-tag {
  color: #1a2a6c; /* Turns to your brand Navy on hover */
}

.dev-signature a:hover .dev-icon-box {
  transform: translateY(-3px) rotate(-5deg);
  border-color: #0a84ff;
  box-shadow: 0 4px 12px rgba(10, 132, 255, 0.15);
}

.dev-signature a:hover .dev-logo {
  filter: grayscale(0%); /* Brings your logo colors back to life */
}

/* Responsive: Side-by-side on larger screens */
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
/* ============================= */
/*        RESPONSIVE DESIGN      */
/* ============================= */

@media (max-width: 768px) {
  footer {
    padding: 3rem 8% 1.5rem;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-col {
    margin: 0 auto;
  }

  .footer-col p {
    justify-content: center;
  }

  .footer-col h4::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col.quick-links ul {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }
}

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 10000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
      align-items: center;
      justify-content: center;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      padding: 3rem;
      border-radius: 24px;
      width: 90%;
      max-width: 550px;
      position: relative;
      animation: modalSlideIn 0.4s ease;
    }

    @keyframes modalSlideIn {
      from {
        transform: translateY(-50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-size: 1.75rem;
      cursor: pointer;
      color: var(--gray);
      transition: all 0.3s ease;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .modal-close:hover {
      background: var(--light);
      color: var(--dark);
      transform: rotate(90deg);
    }

    .modal-content h2 {
      font-size: 2rem;
      color: var(--dark);
      margin-bottom: 2rem;
      font-weight: 800;
    }

    .modal-content form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .modal-content input,
    .modal-content select,
    .modal-content textarea {
      padding: 1rem;
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      font-size: 1rem;
      font-family: inherit;
      transition: all 0.3s ease;
    }

    .modal-content input:focus,
    .modal-content select:focus,
    .modal-content textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    }

    .modal-content textarea {
      resize: vertical;
      min-height: 120px;
    }

    .modal-content button {
      padding: 1rem 2rem;
      background: linear-gradient(135deg, var(--accent), #ff8c5a);
      color: white;
      border: none;
      border-radius: 12px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .modal-content button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .company-name {
        display: none;
      }

      nav ul {
        display: none;
      }

      .menu-icon {
        display: block;
      }

      .hero {
        padding: 6rem 5% 3rem;
      }

      section {
        padding: 4rem 5%;
      }
      .about-section {
        background: linear-gradient(135deg, #0a1929 0%, #1e3a5f 100%);
      }

      .btn-group {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        justify-content: center;
        
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }
    /* 🌍 Language Switcher */
.language-switcher {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background: var(--light);
  border: none;
  padding: 8px 12px;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lang-btn:hover {
  background: #ffd700; /* subtle hover accent */
}

.lang-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  min-width: 180px; /* slightly wider to fit long names */
  max-width: 220px; /* prevent it from being too wide */
  z-index: 1000;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.3s ease;
  white-space: nowrap;       /* prevent breaking mid-word */
  overflow: hidden;          /* hide overflow */
  text-overflow: ellipsis;   /* add ... if too long */
}

.lang-option img {
  width: 24px;
  height: auto;
  border-radius: 3px;
}

.lang-option:hover {
  background: rgba(255, 204, 0, 0.2); /* highlight on hover */
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .lang-btn {
    font-size: 1rem;
    padding: 6px 10px;
  }
  .lang-option {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
  .lang-option img {
    width: 20px;
  }
}
