/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8;
  color: #333;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header / Navigation */
.navbar {
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 1.5rem;
  color: #003366;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li a {
  text-decoration: none;
  color: #003366;
  font-weight: 500;
  padding: 10px 0;
  display: inline-block;
  transition: color 0.3s;
}

.menu li a:hover {
  color: #0066cc;
}

.lang-toggle {
  display: flex;
  gap: 10px;
}

.lang-toggle button {
  background: #f0f0f0;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 3px;
  font-weight: 500;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #003366;
  margin: 2px 0;
  border-radius: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #003366, #0066cc);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  background: #ffcc00;
  color: #003366;
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
  margin-top: 20px;
}

.btn:hover {
  background: #e6b800;
}

/* Sections */
.section {
  padding: 80px 20px;
}

.section h2 {
  margin-bottom: 20px;
  color: #003366;
  text-align: center;
}

/* About */
.about img {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 20px;
  display: block;
  margin: 20px auto 0;
}

/* Services */
.services ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.services li {
  padding: 15px;
  font-size: 18px;
  background: white;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonial {
  background: white;
  border-left: 4px solid #003366;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 20px auto;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}

/* Gallery */
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
}

.carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Contact */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
  align-items: center;
}

.contact-links a {
  text-decoration: none;
  color: #003366;
  font-weight: 500;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-links a:hover {
  opacity: 0.8;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form button {
  background-color: #003366;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #002244;
}

#formStatus {
  margin-top: 15px;
  text-align: center;
  font-weight: 500;
}

/* Footer */
footer {
  background-color: #222;
  color: #ccc;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
}

/* ========== Media Queries ========== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    display: none;
  }
  
  nav.active {
    display: block;
  }
  
  .menu {
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }
  
  .menu li a {
    padding: 15px 0;
    display: block;
    border-bottom: 1px solid #eee;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .lang-toggle {
    margin-left: 15px;
  }
  
  .carousel-item img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 20px;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 50px 20px;
  }
  
  .carousel-item img {
    height: 250px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    padding: 10px;
    font-size: 1.2rem;
  }
}