* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}
html{
  scroll-behavior: smooth;
}

body {
  background-color: #0a0a0a; /* Full black background */
}

.navbar {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  background-color: #0a0a0a;
}

.nav-container {
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 25px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #1a1a1a;
  width: 100%;
  max-width: 700px;
}

.navbar-logo {
  height: 60px;
  width: 60px;
  flex-shrink: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #bb86fc;
}

.call-btn {
  background-color: #bb86fc;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}


/*main*/
.hero {
  text-align: center;
  padding: 40px 20px 60px; /* reduced from 100px */
  background-color: #0a0a0a;
}

.logo-text {
  font-family: 'Great Vibes', cursive;
  font-size: 30px;
  color: #fff;
  position: relative;
  padding-bottom: 20px;
}



.headline {
  font-size: 38px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 30px;
}

.headline .red{
  color: #bb86fc;
}

.subtext {
  color: #aaa;
  font-size: 14px;
  margin-top: 10px;
  max-width: 800px;
  margin-inline: auto;
  line-height: 1.6;
}
/*video*/
.video-section {
  background: #0a0a0a;
  padding: 60px 20px;
  position: relative;
  text-align: center;
  margin-top:-40px;
}

.video-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 40px #bb86fc;
  border: 2px solid #bb86fc;
}

.video-thumbnail {
  max-width: 100%;
  display: block;
  border-radius: 20px;
}




/* CTA Button */
.cta-container {
  margin-top: 30px;
}

.cta-button {
  background: linear-gradient(to right, #bb86fc, #bb86fc);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(to right, #d90000, #ff4d4d);
}



/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .navbar-logo {
    height: 50px;
    width: 50px;
  }

  .call-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}
/*About*/
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  background-color: #0a0a0a;
  color: white;
  gap: 40px;
  flex-wrap: wrap;
  margin-left: 50px;
}

.about-content {
  flex: 1 1 700px;
  max-width: 1500px;
}

.about-content h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.about-content h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d1d1;
  margin-bottom: 30px;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
  
}

.about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 20px #bb86fc;
}

/* CTA Button */
.cta-button {
  background: linear-gradient(to right, #bb86fc, #bb86fc);
  color: #fff;
  padding: 13px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  transition: background 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background: linear-gradient(to right, #bb86fc, #bb86fc);
}

/* Responsive */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-content, .about-image {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 15px;
  }
}
/*Services*/
.features-section {
  background-color: #0a0a0a;
  padding: 60px 40px;
  color: white;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background-color: transparent;
  padding: 20px;
}

.feature-icon {
  height: 50px;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #d1d1d1;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .features-section {
    padding: 40px 20px;
  }

  .feature-box {
    padding: 10px;
  }

  .feature-box h3 {
    font-size: 18px;
  }

  .feature-box p {
    font-size: 14px;
  }
}

/*rank*/
/* Stats Section */
.stats-section {
  background-color: #bb86fc;
  color: white;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 60px 20px;
  gap: 20px;
}

/* Each Stat */
.stat-box {
  text-align: center;
  min-width: 150px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.stat-box h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* When element comes into view */
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/*card*/
.mentors-section {
  padding: 60px 20px;
  text-align: center;
}

.mentors-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}

.mentor-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.mentor-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dotted #c5d7ff;
  border-radius: 15px;
  padding: 30px 20px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.mentor-card:hover {
  transform: translateY(-5px);
}

.mentor-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  margin-bottom: 20px;
}

.mentor-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.mentor-card hr {
  width: 60%;
  margin: 10px auto;
  border: 0.5px solid #5d90ff;
}

.mentor-card p {
  font-size: 14px;
  color: #cfd8f5;
  line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .mentor-card {
    width: 100%;
    max-width: 300px;
  }
}



/*FAQ*/
.faq-section {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}

.faq-section h1 {
  text-align: center;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 40px;
  color:#bb86fc;
}

.faq-item {
  background-color: #121212;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #1e1e1e;
}

.faq-question {
  width: 100%;
  background: none;
  color: white;
  text-align: left;
  padding: 20px;
  font-size: 18px;
  font-weight: 500;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #1a1a1a;
  color: #ccc;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.6;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}
/*footer*/
.footer {
  background: #0d0d0d;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 20px;
  width: 100%; /* make sure it spans the full screen */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto; /* centers the container inside footer */
  width: 100%;    /* ensures proper responsiveness */
  gap: 40px;
}


.footer-logo {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.footer-logo img {
  width: 60px;
  margin-bottom: 10px;
}

.footer-logo h3 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
}

.footer-column {
  flex: 1 1 180px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-column a,
.footer-column p {
  display: block;
  color: #cfcfcf;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-column a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-column.contact span {
  margin-right: 5px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #888;
  border-top: 1px solid #333;
  padding-top: 20px;
}


