body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-image: url("countries.jpg");
  background-size: cover;
  color: white;
}

.top-footer {
  background-color: #141d2b;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.top-footer a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: 0.3s ease;
}

.top-footer a:hover {
  color: #00c6ff;
  transform: scale(1.1);
}

.container {
  padding: 60px 20px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

h1 {
  margin-bottom: 20px;
  font-size: 2.5rem;
}

form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

input[type="text"] {
  padding: 10px;
  width: 250px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}

button {
  padding: 10px 20px;
  background-color: #00c6ff;
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #007ca6;
}

#country-info {
  max-width: 700px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  display: none;
  text-align: left;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.site-footer {

  background-color: #111214;
  color: white;
  padding: 30px 20px;
  margin-top: 95px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-left, .footer-center, .footer-right {
  flex: 1;
  min-width: 200px;
}

.contact-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: white;
  color: #1743bb;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.contact-btn:hover {
  background-color: #e0e0e0;
}

.social-icons a {
  margin-right: 10px;
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffd700;
}

.footer-right {
  display: flex;
  align-items: flex-end;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
