/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body, html {
    height: 100%;
  }
  
  /* Navbar */
  .navbar-container {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
  }
  
  .header-top {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
  }
  
  .header-text {
    margin-left: 20px;
  }
  
  .header-text h1 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-weight: bold;
  }
  
  .header-text .tagline {
    font-size: 0.9rem;
    color: #666;
    margin: 3px 0 0;
    font-style: italic;
  }
  
  .header-text .legal {
    font-size: 0.7rem;
    color: #777;
    margin: 5px 0 0;
  }
  
  .navbar {
    width: 100%;
    padding: 0 20px;
    background: #003366;
  }
  
  .nav-links {
    display: flex;
    gap: 25px;
    padding: 10px 0;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s;
    font-weight: 500;
  }
  
  .nav-links a:hover {
    color: #f2aa4c;
  }
  
  /* Mobile Styles */
  .nav-toggle {
    display: none;
  }
  
  .hamburger {
    display: none;
    font-size: 1.8rem;
    color: #f2aa4c;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  @media (max-width: 992px) {
    .nav-links {
      gap: 15px;
    }
  }
  
  @media (max-width: 768px) {
    .header-top {
      flex-direction: column;
      align-items: flex-start;
      padding: 15px;
    }
    
    .header-text {
      margin-left: 0;
      margin-top: 10px;
    }
    
    .hamburger {
      display: block;
    }
  
    .nav-links {
      position: fixed;
      top: 160px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 160px);
      background: #003366;
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      gap: 0;
      transition: left 0.4s ease;
    }
  
    .nav-toggle:checked ~ .nav-links {
      left: 0;
    }
  
    .nav-links a {
      width: 100%;
      padding: 15px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
  }
  
  @media (max-width: 480px) {
    .header-text h1 {
      font-size: 1.3rem;
    }
    
    .nav-links {
      top: 180px;
      height: calc(100vh - 140px);
    }
  }
  


/* Clients Hero */
.clients-hero {
  position: relative;
  height: 85vh;
  background: url('../Assets/CLIENTS/cutomer.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.clients-hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.clients-hero .hero-content p {
  font-size: 1.3rem;
  color: #f2aa4c;
}

/* Sector Selection */
.sector-selection {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

.sector-selection h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 3rem;
  position: relative;
}

.sector-selection h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #f2aa4c;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.sector-box {
  display: block;
  background: white;
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sector-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  transition: height 0.3s ease;
}

.sector-box.government::before {
  background: #2c5e92;
}

.sector-box.private::before {
  background: #e67e22;
}

.sector-box:hover::before {
  height: 10px;
}

.sector-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.box-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.government .box-icon {
  background: #2c5e92;
}

.private .box-icon {
  background: #e67e22;
}

.sector-box h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.sector-box p {
  color: #666;
  margin-bottom: 2rem;
}

.preview-logos {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.preview-logos img {
  height: 60px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .clients-hero {
    height: 40vh;
  }

  .clients-hero .hero-content h1 {
    font-size: 2.2rem;
  }

  .clients-hero .hero-content p {
    font-size: 1.1rem;
  }
}

/* Footer */
.footer {
  background: #111;
  color: #eee;
  padding: 3rem 1rem 2rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #f2aa4c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer p {
  margin-bottom: -0.5rem;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #ccc;
  line-height: 1.6;
}

.social-icons {
  margin: 1.5rem 0;
}

.social-icons a {
  color: #f2aa4c;
  font-size: 2.2rem;
  margin: 0 1.2rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  color: #fff;
  transform: translateY(-5px);
}

/* Flexbox Layout for Footer Details */
.footer-details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2.5rem 0;
  text-align: left;
  gap: 2rem;
}

.footer-contact, 
.quick-links, 
.footer-services {
  flex: 1;
  min-width: 250px;
  padding: 0 1rem;
}

.footer-contact p, 
.quick-links p, 
.footer-services p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #f2aa4c;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-contact p::after,
.quick-links p::after,
.footer-services p::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #f2aa4c;
}

.footer-contact p i,
.quick-links a i,
.footer-services a i {
  margin-right: 8px;
  font-size: 0.9rem;
}

.footer-contact p {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  color: #ccc;
}

.footer-contact p i {
  margin-top: 3px;
}

.quick-links ul,
.footer-services ul {
  list-style-type: none;
  padding: 0;
}

.quick-links li,
.footer-services li {
  margin-bottom: 0.8rem;
}

.quick-links a,
.footer-services a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

.quick-links a:hover,
.footer-services a:hover {
  color: #f2aa4c;
  transform: translateX(5px);
}

.copyright {
  font-size: 0.9rem;
  color: #999;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem;
  }
  
  .footer-details {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-contact p,
  .quick-links p,
  .footer-services p {
    justify-content: center;
  }
  
  .footer-contact p::after,
  .quick-links p::after,
  .footer-services p::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .quick-links a,
  .footer-services a {
    justify-content: center;
  }
  
  .social-icons a {
    font-size: 1.8rem;
    margin: 0 0.8rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 4rem 2rem;
  }
}
