/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #000119;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- NAVBAR ---------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 1, 25, 0.85);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.logo img {
  height: 40px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #a8e6cf;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

/* ---------- HERO SECTION ---------- */
#hero-section {
  background: url('/images/star-background.jpg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
  text-align: center;
}

#hero-section h1 {
  font-size: 2.5rem;
  max-width: 800px;
  text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

#hero-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1rem auto;
}

.cta-buttons .btn {
  background: #a8e6cf;
  color: #000119;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-buttons .btn:hover {
  background: #89c9b3;
}

/* Floating bubbles */
.bubble {
  position: absolute;
  bottom: -50px;
  border-radius: 50%;
  animation: rise 10s infinite ease-in;
  opacity: 0.6;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-120vh) scale(1.2);
  }
}

/* ---------- SERVICES ---------- */
#services-section {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #000119, #010a2d);
  text-align: center;
}

#services-section h2 {
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.services-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}
/* ---------- IMPACT ---------- */
#impact-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #000119, #020b2c);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#impact-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('/images/stars-bg.jpg') center/cover no-repeat;
  opacity: 0.2;
  animation: stars-move 40s linear infinite;
}

@keyframes stars-move {
  0% { transform: translateY(0); }
  100% { transform: translateY(-200px); }
}

.impact-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.impact-list li {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.impact-list li::before {
  content: "★";
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 1.5rem;
  color: #a8e6cf;
  animation: pulse 2s infinite;
}

.impact-list li:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 20px rgba(168, 230, 207, 0.4);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}
/* ---------- TEAM SECTION ---------- */
/* ---------- TEAM SECTION ---------- */
#team-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #020b2c, #000119);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#team-section h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow: 0 0 15px rgba(255,255,255,0.3);
}

#team-section .team-intro {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.team-approach {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Approach Card */
.approach-block {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease;
  animation: floaty 6s ease-in-out infinite;
}

.approach-block:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px rgba(168, 230, 207, 0.4);
  background: rgba(255, 255, 255, 0.9); /* Lighter background for black text contrast */
}

.approach-block:hover h3,
.approach-block:hover blockquote {
  color: #000; /* Black text on hover */
}

/* Glowing Border Animation */
.approach-block::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 15px;
  background: linear-gradient(45deg, #A8E6CF, #F4AAB9, #F3E8FF, #A8E6CF);
  background-size: 400%;
  z-index: -1;
  animation: borderGlow 8s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.approach-block:hover::before {
  opacity: 1;
}

/* Headings */
.approach-block h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

/* Text */
.approach-block blockquote {
  font-style: italic;
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Animations */
@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}



/* ---------- FOOTER ---------- */
#site-footer {
  background: rgba(0, 1, 25, 0.9);
  padding: 2rem;
  text-align: center;
}

.footer-nav {
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-nav a {
  color: white;
  text-decoration: none;
}

.footer-contact-info {
  margin-top: 1rem;
}

/* ---------- MOBILE MENU ---------- */


/* Hamburger Menu Styles */
.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background-color: #000119;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  .menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

