/* General Body Styles */
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  margin: 0;
  background-color: #F9FAFB;
  color: #1F2937;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #0B2545, #1E3A8A);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
  height: 40px;
  margin-right: 12px;
}

.navbar .company-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.nav-center a {
  color: #D1D5DB;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-center a:hover,
.nav-center a.active-link {
  color: #F97316 !important;
}

/* Mobile Nav */
.mobile-nav-container {
  display: none; /* Hidden by default, shown on mobile */
}

.nav-mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 1rem;
  background-color: #0B2545;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  width: 200px;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
}

.nav-mobile.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  color: white;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.nav-mobile a:hover {
  background-color: rgba(249, 115, 22, 0.2);
}

.nav-mobile a.active-link {
  color: #F97316 !important;
  font-weight: 600;
}

/* Footer */
.footer {
  background: linear-gradient(to right, #0B2545, #1E3A8A);
  color: #D1D5DB;
  padding: 2rem 2rem 1.5rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-logo .footer-img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-logo h2 {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #D1D5DB;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #F97316;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #145DA0;
  font-size: 0.9rem;
}

/* Scroll to Top Button */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #F97316;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  font-size: 18px;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

#scrollTopBtn.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  background-color: #EA580C;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .navbar .company-name {
    font-size: 1rem; /* Reduced from 1.25rem for mobile */
  }

  .mobile-nav-container {
    display: block;
  }

  #menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
  }

  #menu-toggle i {
    color: white;
  }

  .footer {
    padding: 3rem 1rem;
  }

  .footer-hide-mobile {
    display: none;
  }
}