/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 5%;
  background-color: #002244;
}

.logo img {
  width: auto;
  height: 60px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: #ffff;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links li a:hover {
  color: #d4af37;
}

/* CONTACT BUTTON */
.btn-nav {
  background-color:  #ffff;
  color:  #002244!important;
  padding: 8px 16px;
  border-radius: 20px;
  transition: 0.3s;
}

.btn-nav:hover {
  background-color:#d4af37;
  color: #ffff!important;
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background-color: #002244;
  min-width: 220px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  flex-direction: column;
  z-index: 999;
}

.dropdown-content li a {
  display: block;
  padding: 10px 15px;
  color: #ffff;
}

.dropdown-content li a:hover {
  background-color: #f5f5f5;
  color: cc;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

/* ===== TRANSLATE FIELD (RIGHT SIDE) ===== */
.translate-container {
  display: flex;
  align-items: center;
  gap: 5px;
}
/* ===== MOBILE ===== */
.menu-toggle {
  display: none;
  font-size: 28px;
  color:#ffff;
  cursor: pointer;
}

@media (max-width: 768px) {
   .navbar {
    flex-wrap: wrap;
    background-color: #002244;
  } 

  .menu-toggle {
    display: block;
    cursor: pointer;
    color: #ffff;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
     background-color:#002244 !important;
    flex-direction: column;
    align-items: center;
    display: none;
    gap: 15px;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  .nav-links li a {
  text-decoration: none;
  color: ffff;
  font-weight: 500;
  transition: 0.3s ease;
   background-color: #002244;
}
  .nav-links.active {
    display: flex;
     opacity: 1;
     transform: translateY(0);
  }
  .btn-nav {
  background-color: #ffff!important;
  color:  #002244 !important;
  padding: 8px 16px;
  border-radius: 20px;
  transition: 0.3s;
}

.btn-nav:hover {
  background-color:#d4af37!important;
  color: #ffff!important;
}

}

  /* Hero Section */
  .hero {
    background-color: #003366;
    color: #fff;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  /* Intro Section */
  .intro {
    background-color: #ffffff;
    margin-top: 2rem;
    border-left: 5px solid #0077cc;
    padding-left: 1rem;
  }
  
  /* Services Section */
  .services {
    margin-top: 3rem;
  }
  
  .service {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid #0077cc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
  }
  
  .service h2 {
    font-size: 1.3rem;
    color: #003366;
    margin-bottom: 1rem;
  }
  
  .service ul {
    list-style: disc;
    padding-left: 1.5rem;
  }
  
  .service ul li {
    margin-bottom: 0.5rem;
  }
  
  /* Conclusion Section */
  .conclusion {
    margin-top: 2rem;
    background-color: #e9f5ff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
  }
  
  .contact {
    font-weight: bold;
    margin-top: 1rem;
    color: #0077cc;
  }
  
  /* Footer */
  footer {
    background-color: #003366;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
  
    .container {
      padding: 1rem;
    }
  
    .service h2 {
      font-size: 1.1rem;
    }
  }
  