/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333;
}

header {
  background-color: #001f4d;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-size: 24px;
}

.hamburger {
  font-size: 24px;
  cursor: pointer;
}

nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 20px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
}

nav a {
  text-decoration: none;
  color: #001f4d;
  padding: 5px 0;
}

nav a:hover {
  color: #ff8c00;
}

/* Sections */
section {
  padding: 40px 20px;
  text-align: center;
}

#home {
  background-color: #f0f4ff;
}

.home-img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
}

.buy-btn {
  background-color: #ff8c00;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.buy-btn:hover {
  background-color: #e07600;
}

#about {
  background: #fff;
}

.about-img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Road Map */
#roadmap {
  background: #fdf4e3;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.phase {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.phase img {
  width: 100%;
  border-radius: 10px;
}

/* Our Vision */
#vision {
  background: #e3f8d0;
  padding: 60px 20px;
}

.vision-content {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* Contact */
#contact {
  background: #f8e0e0;
}

.socials a {
  text-decoration: none;
  color: #333;
  margin: 10px;
  font-size: 18px;
}

.socials a:hover {
  color: #001f4d;
}