body {
  margin: 0;
  background: linear-gradient(to bottom, #0E0B21, #1f1849, #4B3DDD);
  color: white;
  font-family: 'Orbitron', sans-serif;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(2px 2px at 15px 25px, #fff, transparent),
    radial-gradient(1px 1px at 85px 140px, #fff, transparent),
    radial-gradient(2px 2px at 220px 60px, #fff, transparent),
    radial-gradient(1px 1px at 350px 180px, #fff, transparent),
    radial-gradient(1px 1px at 480px 35px, #fff, transparent),
    radial-gradient(2px 2px at 620px 120px, #fff, transparent),
    radial-gradient(1px 1px at 750px 190px, #fff, transparent),
    radial-gradient(1px 1px at 880px 45px, #fff, transparent),
    radial-gradient(2px 2px at 1020px 165px, #fff, transparent),
    radial-gradient(1px 1px at 1150px 85px, #fff, transparent),
    radial-gradient(1px 1px at 1280px 210px, #fff, transparent),
    radial-gradient(2px 2px at 1420px 95px, #fff, transparent),
    radial-gradient(1px 1px at 65px 270px, #fff, transparent),
    radial-gradient(1px 1px at 195px 320px, #fff, transparent),
    radial-gradient(2px 2px at 325px 240px, #fff, transparent),
    radial-gradient(1px 1px at 455px 350px, #fff, transparent),
    radial-gradient(1px 1px at 585px 280px, #fff, transparent),
    radial-gradient(2px 2px at 715px 330px, #fff, transparent);
  background-repeat: repeat;
  background-size: 1500px 400px;
  animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

.navbar,
.outreach-hero,
.outreach-block,
.outreach-gallery,
.footer {
  position: relative;
  z-index: 1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #0d0d33;
  font-size: 14px;
  z-index: 9999;
}

.navbar .logo {
  font-weight: bold;
}

.navbar .nav-links {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar .nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.navbar .nav-links a:hover {
  color: #00ffe5;
}

.navbar .logo img {
  height: 50px;
  width: auto;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(13, 13, 51, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 229, 0.3);
  border-radius: 8px;
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 10000;

}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background: rgba(0, 255, 229, 0.2);
  color: #00ffe5;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown>a::after {
  content: ' ▼';
  font-size: 0.8em;
  margin-left: 5px;
}

.outreach-hero {
  padding: 3rem 10%;
}

.outreach-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.outreach-content {
  flex: 1;
  text-align: left;
}

.outreach-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.outreach-intro {
  max-width: 100%;
  margin: 0;
}

.outreach-image {
  flex: 0 0 300px;
}

.outreach-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.outreach-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 10%;
  flex-wrap: wrap;
}

.outreach-block.two-col .box-img {
  width: 45%;
  height: 300px;
  border-radius: 12px;
  margin: 0;
  overflow: hidden;
}

.outreach-block.two-col .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.outreach-block .box-text {
  width: 45%;
  max-width: 45%;
  margin: 0;
  order: 2;
}

.outreach-block.reverse {
  flex-direction: row-reverse;
}

/* Carousel Gallery Styles */
.outreach-gallery {
  padding: 80px 0;
  text-align: center;
  width: 100%;
  overflow: hidden;
}

.outreach-gallery h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
  padding: 0 20px;
}

.outreach-gallery p {
  color: #b8b8b8;
  font-size: 1.1rem;
  margin-bottom: 50px;
  padding: 0 20px;
}

.carousel-container {
  position: relative;
  width: 100vw;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-wrapper {
  overflow: hidden;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 20px;
  animation: autoScroll 25s infinite linear;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.outreach-photo {
  flex: 0 0 320px;
  height: 320px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 255, 229, 0.1));
  border: 1px solid rgba(0, 255, 229, 0.2);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 255, 229, 0.1);
}

.outreach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

.outreach-photo:hover img {
  transform: scale(1.05);
}

.outreach-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 229, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.outreach-photo:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 255, 229, 0.3);
  background: linear-gradient(135deg, rgba(0, 255, 229, 0.2), rgba(75, 61, 221, 0.2));
}

.outreach-photo:hover::before {
  transform: translateX(100%);
}

.footer {
  background: #070707 !important;
  background-color: #070707 !important;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 255, 229, 0.2);
  padding: 40px 20px 20px !important;
  margin-top: 80px;
  display: flex !important;
  flex-direction: column !important;
  font-size: 14px !important;
}

.footer-content {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  max-width: 1400px;
  margin: 0 auto;
  gap: 80px;
  flex-wrap: wrap;
  width: 100%;
  min-height: 200px;
}

.footer-logo {
  flex: 0 0 auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-align: left !important;
  align-self: stretch !important;
  display: flex !important;
  align-items: center !important;
}

.footer-logo img {
  height: 240px !important;
  width: 240px !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-right-content {
  display: flex !important;
  gap: 60px !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
  margin-left: auto !important;
}

.footer-nav,
.footer-contact,
.footer-social {
  flex: 0 0 auto !important;
  min-width: 180px !important;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
  font-family: 'Orbitron', sans-serif !important;
  color: #00ffe5 !important;
  font-size: 1.1rem !important;
  margin-bottom: 15px !important;
  font-weight: 600;
}

.footer-nav ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-nav ul li {
  margin-bottom: 8px !important;
  cursor: default !important;
}

.footer-nav ul li a {
  color: #b8b8b8 !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  transition: color 0.3s ease !important;
}

.footer-nav ul li a:hover,
.footer-nav ul li:hover {
  color: #00ffe5 !important;
}

.footer-contact p {
  color: #b8b8b8 !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  margin-bottom: 10px !important;
}

.footer-social .social-icons {
  display: flex !important;
  gap: 15px !important;
  flex-wrap: wrap;
  margin-top: 1rem !important;
}

.footer-social .social-icons a {
  display: flex !important;
  width: 35px !important;
  height: 35px !important;
  border-radius: 50% !important;
  background: rgba(0, 255, 229, 0.1) !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.footer-social .social-icons a:hover {
  background: rgba(0, 255, 229, 0.2) !important;
  border-color: rgba(0, 255, 229, 0.6) !important;
  transform: translateY(-2px) !important;
}

.footer-social .social-icons a img {
  width: 20px !important;
  height: 20px !important;
  transition: filter 0.3s ease !important;
}

.footer-social .social-icons a:hover img {
  filter: brightness(0) invert(1) sepia(1) saturate(10000%) hue-rotate(180deg) !important;
}

.copyright {
  text-align: center !important;
  color: #888 !important;
  font-size: 0.85rem !important;
  margin-top: 30px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(0, 255, 229, 0.1) !important;
  width: 100% !important;
}

.footer-left,
.footer-right {
  display: none;
}

.about-footer,
.contact-footer {
  display: none;
}


@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .navbar .nav-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 13, 51, 0.95);
    margin-top: 0.5rem;
    border-radius: 8px;
    min-width: 160px;

  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .outreach-header {
    flex-direction: column;
    text-align: center;
  }

  .outreach-content {
    text-align: center;
  }

  .outreach-image {
    flex: none;
  }

  .outreach-block {
    flex-direction: column;
    padding: 2rem 5%;
  }

  .outreach-block.two-col .box-img,
  .outreach-block.two-col.reverse .box-img,
  .outreach-block .box-text {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .outreach-block.reverse {
    flex-direction: column;
  }

  .outreach-gallery h2 {
    font-size: 2rem;
  }

  .outreach-gallery {
    padding: 60px 0;
  }

  .outreach-photo {
    flex: 0 0 250px;
    height: 250px;
  }

  .outreach-photo img {
    border-radius: 14px;
  }

  .footer-content {
    flex-direction: column !important;
    gap: 30px !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .footer-logo {
    align-self: center !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    text-align: center !important;
  }

  .footer-logo img {
    height: 140px !important;
    width: 140px !important;
  }

  .footer-right-content {
    flex-direction: column !important;
    gap: 30px !important;
    align-items: center !important;
    margin-left: 0 !important;
  }

  .footer-nav,
  .footer-contact,
  .footer-social {
    min-width: auto !important;
    text-align: center !important;
  }

  .footer-social .social-icons {
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .outreach-photo {
    flex: 0 0 200px;
    height: 200px;
  }

  .outreach-photo img {
    border-radius: 12px;
  }
}