* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

/* HEADER */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  background: #f7f9fc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 55px;
  height: 48px;
}

.logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1d1d1f;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 10px;
}

.nav-links a {
  text-decoration: none;
  color: #5f6472;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background-color: #e8f0ff;
  color: #3b82f6;
}

.nav-links a.active {
  background-color: #e8f0ff;
  color: #3b82f6;
}

.apply-button {
  background-color: #ff7b1d;
  color: white;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 18px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.apply-button:hover {
  background-color: #ff924a;
}

/* CONTAINER */
.about-container {
  max-width: 2000px;
  margin: 0 auto;
  padding: 20px;
}

.about-header {
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #0026ff, #009dff);
  color: white;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.163);
}

.about-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 1.6;
}

/* MAIN CONTENT */
.page-header {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(to right, #007cf0, #00dfd8);
  color: white;
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about-block {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.about-block.reverse {
  flex-direction: row-reverse;
}

.text-box,
.img-box {
  flex: 1 1 50%;
  min-height: 300px;
}

.text-box {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.img-box {
  background-size: fill;
  background-position: center;
}

.text-box h2 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #007cf0;
}

.text-box p {
  font-size: 1rem;
  color: #444;
}

/* Journey Section */
.journey-section {
  max-width: 900px;
  margin: 60px auto 100px;
  padding: 0 20px;
}

.journey-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #007cf0;
  text-align: center;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.timeline-item {
  background: white;
  padding: 20px;
  border-left: 5px solid #007cf0;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item .year {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #007cf0;
}

.timeline-item p {
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 768px) {
  .about-block,
  .about-block.reverse {
    flex-direction: column;
  }

  .text-box,
  .img-box {
    flex: 1 1 100%;
    min-height: 200px;
  }
}

/* FOOTER */
.footer {
  background-color: #0f1a2c;
  color: #c9d1e0;
  padding: 50px 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 220px;
}

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-section p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #c9d1e0;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #3b82f6;
}

.footer-section.contact i {
  margin-right: 8px;
  color: #3b82f6;
}

.social-icons a {
  color: #d1d5db;
  font-size: 18px;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #3b82f6;
}

.footer-bottom {
  border-top: 1px solid #24344f;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.9rem;
  text-align: center;
}

.footer-bottom a {
  color: #a1b2cd;
  margin: 0 5px;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
