/* Base Styles */
:root {
  --primary-color: #ebbb54;
  --primary-dark: #b88923;
  --text-color: #333333;
  --text-light: #666666;
  --background-dark: #0c0c0c;
  --background-light: #1a1a1a;
  --background-lighter: #262626;
  --white: #ffffff;
  --gradient-gold: linear-gradient(0deg, #b88923 26%, #ebbb54 83%);
  --gradient-text: linear-gradient(0deg, #c2c2c2 20%, #ffffff 80%);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Satoshi", sans-serif;
  background-color: var(--background-dark);
  color: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  font-family: "Satoshi", sans-serif;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--background-dark);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(235, 187, 84, 0.2);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: rgba(235, 187, 84, 0.1);
  transform: translateY(-3px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
}

/* Gradient Text */
.gradient-text-1 {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-text-2 {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Header/Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-gold);
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  transition: var(--transition);
}

.mobile-menu-toggle span:first-child {
  top: 0;
}

.mobile-menu-toggle span:last-child {
  bottom: 0;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(38, 38, 38, 0.5) 0%, rgba(12, 12, 12, 0.8) 70%);
  z-index: -1;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  color: #c2c2c2;
  max-width: 500px;
}

.hero-video {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
}

.students-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--background-dark);
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.students-info p {
  color: #c2c2c2;
  font-size: 14px;
}

.partners {
  margin-top: 80px;
  padding: 30px 0;
  background-color: var(--background-light);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-slider {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partner {
  opacity: 0.6;
  transition: var(--transition);
}

.partner:hover {
  opacity: 1;
}

.partner img {
  height: 30px;
  width: auto;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: #c2c2c2;
  max-width: 700px;
  margin: 0 auto;
}

/* Courses Section */
.courses {
  padding: 100px 0;
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: var(--background-light);
  border-radius: 50px;
  padding: 10px 20px;
  margin: 0 auto 40px;
  max-width: 600px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-icon {
  margin-right: 10px;
  fill: #c2c2c2;
}

.search-bar input {
  background: transparent;
  border: none;
  color: var(--white);
  font-family: "Satoshi", sans-serif;
  font-size: 16px;
  width: 100%;
  outline: none;
}

.search-bar input::placeholder {
  color: #c2c2c2;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.course-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.course-image {
  position: relative;
  height: 200px;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-gold);
  color: var(--background-dark);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.course-content {
  padding: 20px;
}

.course-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.course-mentor {
  display: flex;
  align-items: center;
  gap: 10px;
}

.course-mentor img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.course-mentor span {
  font-size: 14px;
  color: #c2c2c2;
}

.course-duration {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #c2c2c2;
  font-size: 14px;
}

.course-duration svg {
  fill: var(--primary-color);
}

/* Results Section */
.results {
  padding: 100px 0;
  background-color: var(--background-light);
}

.results-image {
  margin: 0 auto 60px;
  max-width: 800px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit {
  text-align: center;
  padding: 30px;
  background-color: var(--background-lighter);
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  margin-bottom: 20px;
}

.benefit h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.benefit p {
  color: #c2c2c2;
}

/* Mentors Section */
.mentors {
  padding: 100px 0;
}

.mentors-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.mentor-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mentor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.mentor-image {
  height: 300px;
}

.mentor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-info {
  padding: 20px;
  text-align: center;
}

.mentor-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.mentor-info p {
  color: var(--primary-color);
  font-size: 14px;
}

/* Teaching Methods Section */
.teaching-methods {
  padding: 100px 0;
  background-color: var(--background-light);
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.method-card {
  background-color: var(--background-lighter);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.method-content {
  padding: 30px;
  flex: 1;
}

.method-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.method-content p {
  color: #c2c2c2;
}

.method-image {
  height: 200px;
}

.method-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-card {
  background-color: var(--background-lighter);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid var(--primary-color);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
  font-style: italic;
}

.testimonial-content h4 {
  font-size: 18px;
  color: var(--primary-color);
}

/* Blog Section */
.blog {
  padding: 100px 0;
  background-color: var(--background-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.blog-card {
  background-color: var(--background-dark);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-image {
  height: 200px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-date {
  display: inline-block;
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-content p {
  color: #c2c2c2;
  font-size: 14px;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(12, 12, 12, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/cta-bg.jpg") center / cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.cta-content p {
  font-size: 18px;
  color: #c2c2c2;
  margin-bottom: 30px;
}

/* Footer */
.footer {
  background-color: var(--background-dark);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-left {
  max-width: 300px;
}

.footer-left p {
  margin: 20px 0;
  color: #c2c2c2;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--background-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.social-link svg {
  fill: var(--white);
}

.footer-right {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  color: #c2c2c2;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #c2c2c2;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--primary-color);
  transition: var(--transition);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.framer-auth {
  display: flex;
  align-items: center;
  gap: 5px;
}

.framer-auth svg {
  fill: #c2c2c2;
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--background-lighter);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
}

.faq-toggle {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-subtitle {
    margin: 0 auto 30px;
  }

  .students-info {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navbar-content {
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--background-dark);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-buttons {
    display: none;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-left {
    max-width: 100%;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-right {
    justify-content: center;
  }

  .footer-links {
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .methods-grid,
  .benefits,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to 
  {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.section-titlep{
  margin-left: 580px;
  padding-block: 10px;

  font-size: xx-large;
}
