@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0b2335;
  color: #e0e0e0;
  line-height: 1.6;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(43, 95, 128, 0.97);
  padding: 15px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.menu a {
  margin-left: 20px;
  text-decoration: none;
  color: #e8e8e8;
  font-weight: 500;
}

.menu a:hover {
  color: #fff;
}

.main-content {
  padding-top: 100px;
}

.section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 40px 10%;
  align-items: center;
}

.section img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.section h2 {
  font-size: 1.5rem;
  margin: 15px 0 10px;
  color: #fff;
}

.section p {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .section {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .section:nth-child(2) .image {
    order: 2;
  }

  .section:nth-child(2) .text {
    order: 1;
  }
}


.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 50px 0;
  align-items: center;
}

.story-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.story-block.left-text {
  direction: ltr;
}

.story-block.right-text {
  direction: rtl;
}

@media (max-width: 768px) {
  .story-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-block img {
    width: 80%;
    max-width: 300px;
    margin: 20px auto;
  }
}

.story-block.left-text {
  flex-direction: row;
}

.story-block.right-text {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .story-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .story-block img {
    width: 80%;
    max-width: 300px;
    margin: 20px 0;
  }
}

.icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.icons a {
  color: #137097;
  font-size: 3rem;
  text-decoration: none;
  transition: transform 0.2s;
}

.icons a:hover {
  transform: scale(1.1);
}


.progress-container {
  width: 100%;
  max-width: 500px;
  height: 22px;
  background-color: #163a52;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4fc3f7, #1e88e5);
  color: #fff;
  text-align: center;
  line-height: 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  transition: width 0.8s ease-in-out;
}

#selected {
  font-weight: bold;
}
