* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('ASSETS/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  backdrop-filter: blur(4px);
  color: #ffffff;
  line-height: 1.6;
}

a {
  color: #ff6f00;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: #ffffff;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(2px);
  border-bottom: none;
  box-shadow: none;
}

.header-left {
  flex: 1;
}

.header-center {
  flex: 2;
  text-align: center;
}

.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 1rem;
}

.nav-center li a {
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  color: #ff6f00;
}

.nav-center li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #ff6f00;
  transition: width 0.4s ease-in-out;
}

.nav-center li a:hover {
  color: white;
}

.nav-center li a:hover::before {
  width: 100%;
}

.logo {
  height: 50px;
  transition: transform 0.1s ease-in-out;
}

.logo:hover {
  transform: scale(1.1);
}

/* Search & Language */
.search-input,
.language-select {
  padding: 0.4rem 1rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.language-select {
  font-size: 0.8rem;
  appearance: none;
}

/* Main container for mission info sections */
.about-container {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 2rem 5%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Each section block (glass look) */
.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.section:hover {
  transform: translateY(-4px);
}

/* Reversed section layout (image on left) */
.section.reverse {
  flex-direction: row-reverse;
}

/* Text content inside section */
.section .text {
  flex: 1;
}

.section h2 {
  color: #66fcf1;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.section p,
.section ul {
  color: #c5c6c7;
  font-size: 1rem;
  line-height: 1.6;
}

.section ul {
  padding-left: 1.2rem;
}

.section ul li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

/* Mission images */
.about-img {
  flex: 1;
  max-width: 450px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive layout for mobile */
@media (max-width: 900px) {
  .section,
  .section.reverse {
    flex-direction: column;
    text-align: center;
  }

  .about-img {
    width: 100%;
    max-height: 300px;
  }
}



/* FOOTER */
.footer-section {
  background: transparent;
  padding: 3rem 1rem 1rem;
  color: #eee;
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3 {
  color: #ff6f00;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-col p,
.footer-col a {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  text-decoration: none;
  transition: color 0.2s;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons a img {
  width: 30px;
  height: 30px;
  filter: brightness(0.8);
  transition: transform 0.3s, filter 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.1);
  filter: brightness(1);
}

/* Bottom footer */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .section {
    flex-direction: column;
  }

  .section.reverse {
    flex-direction: column;
  }

  .about-img {
    max-width: 100%;
  }
}