/* ------------------------ */
/* 🌐 Global Styles         */
/* ------------------------ */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(ellipse at center, #1e1b25 0%, #121117 100%);
  color: white;
}

/* ------------------------ */
/* 🔝 Header Section        */
/* ------------------------ */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background-color: transparent;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.search-container {
  display: flex;
  align-items: center;
}

.search-container input {
  padding: 8px;
  border-radius: 5px;
  border: none;
}

.login-btn {
  background-color: #f76b4d;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: white;
  font-weight: bold;
  margin-left: 15px;
}

/* ------------------------ */
/* 🦸 Hero Section          */
/* ------------------------ */
.hero {
  text-align: center;
  padding: 100px 20px 50px;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
}

.hero p {
  margin: 20px 0;
  font-size: 18px;
}

.cta-btn {
  padding: 12px 30px;
  background-color: #f76b4d;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

/* ------------------------ */
/* 📊 Stats Section         */
/* ------------------------ */
.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  flex-wrap: wrap;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px 30px;
  text-align: center;
  width: 220px;
  transition: transform 0.3s ease;
}

.stat-box h2 {
  font-size: 36px;
  margin: 0;
  color: white;
}

.stat-box p {
  margin-top: 10px;
  font-size: 14px;
  color: #d6d6d6;
}

.stat-box:hover {
  transform: scale(1.05);
}

/* ------------------------ */
/* 🤝 Trusted Companies     */
/* ------------------------ */
.trusted-companies {
  text-align: center;
  padding: 30px 20px 60px;
}

.trusted-companies h3 {
  font-weight: 500;
  margin-bottom: 30px;
  color: white;
  font-size: 20px;
}

.logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.logo-container img {
  max-height: 50px;
  max-width: 120px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

.logo-container img:hover {
  filter: grayscale(0%);
  opacity: 1;
}














/* ------------------------ */
/* 📚 Course Section        */
/* ------------------------ */
.course-section {
  padding: 60px 30px;
  background-color: #f9f9f9;
  color: #222;
  text-align: center;
}

.section-header {
  margin-bottom: 30px;
}

.section-subtitle {
  display: inline-block;
  background: #ffe9e0;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: #f76b4d;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0 5px;
}

.section-header p {
  color: #555;
  font-size: 16px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.category-tabs button {
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #444;
  box-shadow: 0 0 0 1px #ddd;
  cursor: pointer;
  font-weight: 500;
}

.category-tabs .active-tab {
  background: #f3e8ff;
  color: #7e22ce;
  box-shadow: 0 0 0 2px #c084fc;
}

.category-title {
  text-align: left;
  max-width: 1200px;
  margin: 20px auto 10px;
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

.course-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

.course-card {
  background: #fff;
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.course-card h4 {
  padding: 15px 15px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.course-card p {
  padding: 5px 15px 15px;
  font-size: 14px;
  color: #666;
}

.view-all-container {
  margin-top: 30px;
}

.view-all-btn {
  padding: 12px 24px;
  font-size: 15px;
  background-color: #111;
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

















/* ----------------------------- */
/* 🎥 Immersive Learning Section */
/* ----------------------------- */
.immersive-section {
  background: #fff5f0;
  padding: 80px 30px;
  color: #222;
}

.immersive-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.immersive-left {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.immersive-right {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.immersive-tag {
  background: #ffe9e0;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: #f76b4d;
  display: inline-block;
  margin-bottom: 10px;
}

.immersive-left h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.immersive-left p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #444;
}

.immersive-box {
  background: #fff;
  border: 1px solid #ffe3db;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  cursor: pointer;
}

.immersive-box.active,
.immersive-box:hover {
  background-color: #fff0e8;
  border-color: #f76b4d;
  box-shadow: 0 8px 20px rgba(247, 107, 77, 0.2);
}

.immersive-box h3 {
  margin: 0;
  font-size: 18px;
  color: #b33a19;
}

.immersive-box p {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}

.immersive-right video {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
























/* ------------------------ */
/* 💬 Testimonials Section  */
/* ------------------------ */
.testimonials {
  background: #15141b;
  color: white;
  padding: 80px 30px;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  background: linear-gradient(145deg, #1e1d26, #13121a);
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  width: 300px;
  padding: 25px;
  transition: transform 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #eaeaea;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #f76b4d;
}

.testimonial-author strong {
  font-size: 16px;
  color: #f3f3f3;
}




















/* --------------------------- */
/* 🧑‍🏫 Mentors Section        */
/* --------------------------- */
.mentors-section {
  padding: 80px 30px;
  background-color: #fff;
  color: #222;
  text-align: center;
}

.mentors-tag {
  display: inline-block;
  background: #ffe9e0;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: #f76b4d;
  margin-bottom: 10px;
}

.mentors-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.mentor-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.mentor-card {
  background: linear-gradient(145deg, #f7f7f7, #ffffff);
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 320px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}

.mentor-card:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mentor-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.mentor-info {
  padding: 20px;
  text-align: left;
}

.mentor-info h3 {
  margin: 0 0 5px;
  font-size: 20px;
  color: #222;
}

.mentor-info p {
  margin: 5px 0;
  font-size: 14px;
  color: #555;
}

.mentor-details {
  margin: 15px 0;
}

.mentor-details p {
  font-size: 14px;
  color: #444;
}

.mentor-bio {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.company-logo {
  height: 25px;
  margin-top: 8px;
}


















/* ----------------------------- */
/* 🎓 Masterclass Section        */
/* ----------------------------- */
.masterclass-section {
  padding: 80px 30px;
  background-color: #fff;
}

.masterclass-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
}

.masterclass-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
}

.masterclass-content {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  text-align: left;
}

.masterclass-tag {
  background: #ffe9e0;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: #f76b4d;
  display: inline-block;
  margin-bottom: 10px;
}

.masterclass-title {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
  color: #222;
}

.masterclass-description {
  color: #444;
  font-size: 16px;
  margin-bottom: 30px;
}

.masterclass-btn {
  background-color: #ea6b5f;
  border: none;
  padding: 14px 26px;
  font-size: 16px;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.masterclass-btn:hover {
  background-color: #d2544b;
}






















/* ----------------------------- */
/* 👥 Founders Section           */
/* ----------------------------- */
.founders-section {
  background-color: #1c1c1c;
  color: #fff;
  padding: 80px 30px;
}

.founders-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.founders-content {
  flex: 1;
  min-width: 300px;
}

.founders-btn {
  background: none;
  border: 2px solid #ff8356;
  color: #ff8356;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  margin-bottom: 20px;
  cursor: pointer;
}

.founders-quote {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
}

.highlight {
  color: #ff8356;
}

.founders-names {
  display: flex;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.founder {
  font-size: 16px;
  color: #eee;
}

.and-symbol {
  font-size: 24px;
  font-weight: bold;
  color: #ffb3a2;
}

.founders-images img {
  width: 180px;
  margin-left: 20px;
  border-radius: 12px;
  background: #2c2c2c;
  padding: 5px;
}



















/* ----------------------------- */
/* 🎓 Help Section               */
/* ----------------------------- */
.help-section {
  background: linear-gradient(to right, #ffe6e6, #ffcccc);
  padding: 60px 20px;
  border-radius: 16px;
  margin: 40px 0;
}

.help-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.help-left {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.help-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.help-left p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #444;
}

.help-left img {
  max-width: 250px;
}

.help-right {
  flex: 1;
  min-width: 300px;
}

.steps-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 10px;
  font-size: 14px;
}

.steps-indicator .step {
  background: #ddd;
  color: #555;
  padding: 5px 12px;
  border-radius: 20px;
}

.steps-indicator .step.active {
  background: #ff9785;
  color: white;
}

.steps-indicator .line {
  height: 2px;
  width: 30px;
  background: #ccc;
}

.help-form {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.help-form select,
.help-form input {
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.help-form button {
  padding: 12px;
  font-size: 16px;
  background: #f89b90;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.help-form button:hover {
  background: #e77a68;
}
















.footer {
  background: linear-gradient(to right, #1a1a1a, #2c0f13);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  padding: 60px 20px 30px;
}

.footer-top h2 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.footer-top .highlight {
  color: #ff7e7e;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  max-width: 300px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.footer-left p {
  margin: 8px 0;
  font-size: 14px;
  color: #ccc;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 6px 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.social-icons i {
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
  font-size: 13px;
  color: #bbb;
}

.footer-bottom a {
  color: #bbb;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}
