/* 1. Global Styles */
* {
  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;
}
/* HOME PAGE */
/* 2. Header & Navigation */
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);
}

/* 3. Search & Language */
.search-input {
  padding: 0.4rem 1rem;
  border: none;
  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 {
  padding: 0.4rem 0.8rem;
  font-size: 0.80rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  appearance: none;
}

/* 4. Highlight Section */
.highlight-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem;
  margin: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  gap: 2rem;
}

.highlight-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mini-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction:  row-reverse;
}

.thumb img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  padding: 2px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 0.3s, border 0.3s;
}

.thumb img:hover {
  transform: scale(1.1);
}

/* Highlight selected thumbnail with orange border */
#thumb1:checked + label img,
#thumb2:checked + label img,
#thumb3:checked + label img {
  border: 3px solid #ff6f00;
}

/* Mission Info */
.mission-info {
  width: 100%;
  padding-top: 20px;
}

.mission-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

#thumb1:checked ~ label[for="thumb1"] ~ label[for="thumb2"] ~ label[for="thumb3"] ~ .mission-info #info1,
#thumb2:checked ~ label[for="thumb2"] ~ label[for="thumb3"] ~ .mission-info #info2,
#thumb3:checked ~ label[for="thumb3"] ~ .mission-info #info3 {
  display: block;
}

.mission-content h1 {
  font-size: 2.5rem;
  color: #ff6f00;
  margin-bottom: 1rem;
}

.mission-content p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.learn-btn {
  background: #ff6f00;
  color: white;
  padding: 0.7rem 1.4rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.learn-btn:hover {
  background: rgba(16, 22, 58, 0.6);
}

/* 5. News Scroll */
.highlight-right {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: 16px;
  color: #fff;
}

.highlight-right h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.news-scroll {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  animation: scrollNews 25s linear infinite;
}

@keyframes scrollNews {
  0% { transform: translateY(0%); }
  100% { transform: translateY(-50%); }
}

.news-list li {
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
  color: #f0f0f0;
}

/* 6. Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: rgba(16, 22, 58, 0.6);
  backdrop-filter: blur(10px);
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 7. Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 8. Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1rem;
  }

  .highlight-section {
    flex-direction: column;
  }

  .highlight-right {
    margin-top: 2rem;
  }

  .mission-content h1 {
    font-size: 1.5rem;
  }

  .search-input,
  .language-select {
    width: 100%;
  }

  .nav-center {
    flex-wrap: wrap;
  }
}

 /* ABOUT QUICK OVERVIEW  */
  .about-overview {
  margin: 3rem auto;
  padding: 3rem 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
  max-width: 1400px;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}

.about-overview h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ff6f00;
}

.about-overview p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.highlight-box {
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-8px);
}

.highlight-box h3 {
  font-size: 1.4rem;
  color: #ff6f00;
  margin-bottom: 0.8rem;
}

.highlight-box p {
  font-size: 1rem;
  color: #ddd;
}

.btn-glass {
  margin-top: 2rem;
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-in-out;
}

.btn-glass:hover {
  background: #ff6f00;
  color: #000;
  border-color: #ff6f00;
}



/* TIMELINE */

.timeline-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1rem;
  position: relative;
}

/* Heading */
.timeline-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #ff6f00;
  margin-bottom: 3rem;
}

/* Vertical Timeline Line */
.timeline-line {
  position: relative;
  margin-left: 40px;
  padding-left: 30px;
  border-left: 3px solid #ff6f00;
}

/* Each Entry */
.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  padding-left: 1rem;
}

/* Dot on the timeline */
.timeline-dot {
  position: absolute;
  left: -19px;
  top: 5px;
  width: 20px;
  height: 20px;
  background-color: #ff6f00;
  border-radius: 50%;
  border: 3px solid #fff;
  z-index: 1;
}

/* Year Label */
.timeline-year {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ff6f00;
  margin-bottom: 1rem;
}

/* Entry Content */
.timeline-content {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(255, 111, 0, 0.5);
}

.timeline-content img {
  width: 180px;
  height: 120px;
  object-fit: contain;
  border-radius: 0px;
  flex-shrink: 0;
}

.timeline-content .text {
  flex: 1;
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.timeline-content p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Button Navigation (optional reuse) */
.timeline-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.timeline-nav button {
  padding: 0.5rem 1rem;
  border: none;
  background-color: rgba(255, 111, 0, 0.1);
  color: #ff6f00;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.timeline-nav button:hover {
  background-color: #ff6f00;
  color: #fff;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .timeline-content {
    flex-direction: column;
    text-align: center;
  }

  .timeline-content img {
    width: 100%;
    height: auto;
  }

  .timeline-line {
    margin-left: 20px;
    padding-left: 20px;
  }

  .timeline-dot {
    left: -14px;
  }

  .timeline-year {
    font-size: 1.1rem;
  }
}


/* FOOTER */

/* ========== FOOTER STYLES ========== */
.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: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.footer-col h3 {
  color: #ff6f00;
  margin-bottom: 1rem;
  font-size: 2rem;
  
}

.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 {
  gap: 1.5rem;
  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 tweaks */
@media (max-width: 768px) {
  .about-overview h2 {
    font-size: 2rem;
  }

  .about-overview p {
    font-size: 1rem;
  }

  .highlight-box h3 {
    font-size: 1.2rem;
  }

  .highlight-box p {
    font-size: 0.95rem;
  }
}

