/* ===== BASE ===== */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #000;
}

.navbar-brand {
  letter-spacing: 1px;
}

.nav-link {
  color: #fff !important;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffcc00 !important;
}

/* ==== HERO ==== */
.about-hero {
  background: linear-gradient(90deg, #111 40%, #00e5ff33);
  text-align: center;
  padding: 100px 20px 80px;
}

.about-hero h2 {
  font-size: 3rem;
  color: #fff;
}
.about-hero h2 span {
  color: #00e5ff;
}
.about-hero p {
  color: #ccc;
  font-size: 1.1rem;
  margin-top: 15px;
}

/* ==== ABOUT SECTION ==== */
.about-section {
  padding: 80px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h3 {
  color: #00e5ff;
  margin-bottom: 10px;
}

.about-text p {
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 25px;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text li {
  background: #1a1a1a;
  padding: 10px 15px;
  margin: 8px 0;
  border-radius: 8px;
  color: #f1f1f1;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

/* ==== TEAM SECTION ==== */
.team-section {
  text-align: center;
  padding: 80px 20px;
  background: #111;
}

.team-section h2 {
  font-size: 2.5rem;
  color: #00e5ff;
  margin-bottom: 50px;
}

.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.team-card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  width: 250px;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-card h4 {
  margin: 5px 0;
  color: #fff;
}

.team-card p {
  color: #ccc;
}

.footer-section {
  background: #111;
  color: #bbb;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff007f, #00e5ff, #6a11cb);
}

.footer-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff007f, #6a11cb);
  border-radius: 2px;
}

.footer-section a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #00e5ff;
  text-decoration: underline;
}

.play-badge {
  width: 150px;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.play-badge:hover {
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid #333;
  background-color: #0d0d0d;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
}

.footer-bottom span {
  color: #00e5ff;
  font-weight: 600;
}
