/* General Styles */
body {
  background: #f4f6fa;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

.hamburger-lang-container {
  display: flex;
  align-items: center;
}

.hamburger-menu {
  position: relative;
  right: 10px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: #293089;
  transition: 0.3s;
}

.nav-links {
  display: none;
  flex-direction: column;
  align-items: flex-start; /* Align items to the left */
  background-color: #ffffff;
  position: absolute;
  top: 113px;
  right: 0;
  width: 20%;
  padding: 10px 0;
  overflow: hidden; /* Prevent content from being visible when collapsed */
  max-height: 0; /* Start with a height of 0 */
  transition: max-height 0.3s ease, opacity 0.5s ease; /* Smooth transition for height and opacity */
  opacity: 0; /* Hidden when not visible */
}

.nav-links.show {
  display: flex; /* Make it visible */
  max-height: 500px; /* Set a large enough height to accommodate all links */
  opacity: 1; /* Fully visible */
}

.nav-links li {
  list-style: none;
  width: 100%; /* Ensure full width for padding alignment */
}

.nav-links li a {
  color: #293089;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px; /* Add padding to push text away from the left edge */
  display: block;
}

.nav-links li a:hover {
  color: #6a8dd8;
}

/* Language Toggle Button */
#lang-toggle {
  padding: 5px 10px;
  font-size: 0.9em;
  font-weight: bold;
  color: #ffffff;
  background-color: #293089;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#lang-toggle:hover {
  background-color: #6a8dd8;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 0px 0px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.logo-container img {
  width: 140px;
  height: auto;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to bottom, #293089, #6a8dd8);
  color: white;
}

/* Explore Button Styling */
.hero button {
  background-color: #ffffff;
  color: #293089;
  border: 2px solid #293089; /* Adding a border to enhance the design */
  padding: 12px 25px; /* Adjust padding for a better look */
  font-size: 1.1em; /* Slightly larger text for emphasis */
  font-weight: bold;
  text-transform: uppercase; /* Optional: Makes the text all uppercase */
  border-radius: 30px; /* Rounded button for a modern look */
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: all 0.3s ease; /* Smooth hover effects */
}

.hero button:hover {
  background-color: #293089; /* Button color changes on hover */
  color: #ffffff; /* Text becomes white */
  transform: scale(1.05); /* Slightly enlarge on hover for emphasis */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

/* Features Section */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background: #ffffff;
  padding: 30px 10px;
}

.features div {
  background: #e6e9f1;
  text-align: center;
  width: 200px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  cursor: pointer;
  margin: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s;
}

.features div:hover {
  background-color: #d4e4ff;
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Section */
footer {
  text-align: center;
  padding: 20px;
  background-color: #293089;
  color: white;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  margin: 0 10px;
  text-decoration: none;
  display: inline-block;
}

.social-icons .social-icon {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons .social-icon:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}
