/* NAVBAR */
.site-header {
  
  width: 100%;
  background: #e18421;
  padding: 10px 0;
}

.navbar {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  color: #e8f6ff;
  text-decoration: none;
}

.brand-logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.brand-text {
  font-size: 18px;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #cde3f5;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #00d88a;
}

/* Mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #041224;
    position: absolute;
    top: 70px;
    right: 5%;
    width: 200px;
    padding: 20px;
    border-radius: 10px;
    gap: 15px;
  }

  .nav-links.show {
    display: flex;
  }
}






body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background:linear-gradient(180deg,#071026 0%, #071726 100%);color:#e9f9f6 center/cover no-repeat;
  color: #c408ee;
}

.container {
  width: 90%;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* HERO */
.about-hero {
  height: 60vh;
  background: url('./images/Galaxy.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.about-hero .content {
  position: relative;
  text-align: center;
}
.about-hero h1 {
  font-size: 48px;
  font-weight: 700;
}
.about-hero p {
  font-size: 16px;
  opacity: 0.8;
}

/* ABOUT CARDS */
.about-main {
  padding: 60px 0;
}
.about-text {
  max-width: 800px;
  margin: auto;
  text-align: center;
  opacity: 0.85;
  margin-bottom: 40px;
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.a-card {
  background: #05182d;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
}
.a-card:hover {
  transform: translateY(-8px);
  background: #082440;
}
.a-card i {
  font-size: 38px;
  color: #00d88a;
  margin-bottom: 10px;
}

/* TEAM */
.team-section {
  padding: 60px 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.team-card {
  background: #05182d;
  border-radius: 12px;
  text-align: center;
  padding-bottom: 300px;
  transition: 0.25s;
}
.team-card img {
  width: 100%;
  height: 230px;
  border-radius: 12px 12px 0 0;
  object-fit: cover;
}
.team-card:hover {
  transform: translateY(-6px);
}
.team-card h4 {
  margin-top: 12px;
  font-size: 20px;
}
.team-card p {
  opacity: 0.8;
}

/* MENTORS */
.mentor-section {
  padding: 50px 0;
}
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2500px;
}
.mentor-card {
  background: #041224;
  border: 1px solid #0a2e4a;
  border-radius: 10px;
  padding-bottom: 20px;
  text-align: center;
}
.mentor-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

/* PARTNERS */
.partners-section {
  padding: 60px 0;
}
.partners {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.partners img {
  height: 70px;
  opacity: 0.85;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 25px;
  opacity: 0.6;
  font-size: 14px;
}
/* for team card */
.carousel-cell {
  width: 33%;
  height: 450px;
}

.about-flip-card {
  perspective: 1000px;
  border-radius: 10px;
}

.about-flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border: 1px solid #009970;
  background-color: #009970;
}

.about-flip-card:hover .about-flip-card-inner {
  transform: rotateY(180deg);
}

.about-flip-card-front,
.about-flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.about-flip-card-back {
  transform: rotateY(180deg);
  padding: 10px;
}
