
    :root {
      --orange: #ff7a18;
      --orange-dark: #e56a0f;
      --dark: #0f0f1a;
      --darker: #090912;
      --card: #1c1c2e;
      --card-light: #24243d;
      --text: #ffffff;
      --muted: #b5b5c3;
      --green: #2ecc71;
      --purple: #8a2be2;
      --blue: #3498db;
      --gradient: linear-gradient(135deg, #ff7a18, #ffb347);
      --gradient-dark: linear-gradient(135deg, #1b1b2f, #0b0b14);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: var(--gradient-dark);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 20px;
    }

    section {
      padding: 80px 0;
    }

    .section-title {
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 20px;
      font-weight: 800;
      font-family: 'Montserrat', sans-serif;
      background: var(--gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      position: relative;
    }

    .section-title::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 4px;
      background: var(--orange);
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .section-subtitle {
      text-align: center;
      color: var(--muted);
      max-width: 700px;
      margin: 0 auto 50px;
      font-size: 1.1rem;
    }

    .btn {
      display: inline-block;
      background: var(--orange);
      padding: 12px 28px;
      border-radius: 50px;
      color: #fff;
      font-weight: 600;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      box-shadow: 0 4px 15px rgba(255, 122, 24, 0.3);
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 122, 24, 0.5);
      background: var(--orange-dark);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--orange);
      color: var(--orange);
    }

    .btn-outline:hover {
      background: var(--orange);
      color: #fff;
    }

    /* NAVBAR */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 20px 0;
      transition: all 0.3s ease;
      background: rgb(26 26 46);
      backdrop-filter: blur(10px);
    }

    header.scrolled {
      padding: 15px 0;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
      background: var(--gradient);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      font-weight: 900;
    }

    .logo-text {
      font-weight: 900;
      font-size: 1.6rem;
      font-family: 'Montserrat', sans-serif;
      background: var(--gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    nav {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    nav a {
      font-size: 1rem;
      color: var(--muted);
      position: relative;
      padding: 5px 0;
    }

    nav a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: var(--orange);
      bottom: 0;
      left: 0;
      transition: width 0.3s ease;
    }

    nav a:hover {
      color: var(--text);
    }

    nav a:hover::after {
      width: 100%;
    }

    .mobile-menu-btn {
      display: none;
      background: transparent;
      border: none;
      color: var(--text);
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* HERO */
    .hero {
      padding: 160px 0 100px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background: linear-gradient(135deg, rgba(106, 90, 249, 0.1), rgba(255, 122, 24, 0.1));
      border-radius: 50% 0 0 50%;
      transform: translateX(30%);
      z-index: -1;
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-text h1 {
      font-size: 3.2rem;
      line-height: 1.2;
      margin-bottom: 20px;
      font-weight: 900;
      font-family: 'Montserrat', sans-serif;
    }

    .hero-text h1 span {
      background: var(--gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: block;
    }

    .hero-text p {
      margin: 20px 0 30px;
      color: var(--muted);
      font-size: 1.1rem;
      max-width: 500px;
    }

    .hero-stats {
      display: flex;
      gap: 30px;
      margin-top: 40px;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--orange);
    }

    .stat-label {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .hero-image {
      position: relative;
    }

    .hero-image-container {
      background: linear-gradient(135deg, #6a5af9, #ff7a18);
      height: 380px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .hero-image-container::before {
      content: '';
      position: absolute;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
      top: -50%;
      left: -50%;
      animation: shine 3s infinite linear;
    }

    @keyframes shine {
      0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
      100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }

    .play-btn {
      position: absolute;
      width: 80px;
      height: 80px;
      background: var(--orange);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      box-shadow: 0 10px 30px rgba(255, 122, 24, 0.5);
      z-index: 2;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .play-btn:hover {
      transform: scale(1.1);
    }

    .floating-element {
      position: absolute;
      width: 60px;
      height: 60px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      z-index: 1;
      animation: float 6s infinite ease-in-out;
    }

    .floating-element:nth-child(1) {
      background: var(--purple);
      top: -30px;
      left: -30px;
      animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
      background: var(--blue);
      bottom: -30px;
      right: -30px;
      animation-delay: 2s;
    }

    .floating-element:nth-child(3) {
      background: var(--green);
      top: 50%;
      left: -20px;
      animation-delay: 4s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    /* COURSES */
    .courses-section {
      background: rgba(15, 15, 26, 0.5);
    }

    .courses-filter {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .filter-btn {
      padding: 8px 20px;
      background: transparent;
      border: 1px solid var(--card-light);
      color: var(--muted);
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .filter-btn.active, .filter-btn:hover {
      background: var(--orange);
      color: white;
      border-color: var(--orange);
    }

    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
    }
.course-desc {
  min-height: 60px;          /* keeps equal height */
  max-height: 60px;
  line-height: 1.4em;
  overflow: hidden;

  display: -webkit-box;
  -webkit-line-clamp: 3;     /* number of lines */
  -webkit-box-orient: vertical;
}
.course-title {
  min-height: 52px;           /* keeps all titles same height */
  max-height: 52px;
  line-height: 1.3em;
  font-weight: 600;
  overflow: hidden;

  display: -webkit-box;
  -webkit-line-clamp: 2;      /* exactly 2 lines */
  -webkit-box-orient: vertical;
}
.course-image {
  height: 200px; /* default (mobile / tablet) */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 12px 12px 0 0;
}

/* Desktop view */
@media (min-width: 992px) {
  .course-image {
    height: 250px; /* increase height for desktop */
  }
}
.course-image {
  transition: transform 0.4s ease;
}

.course-card:hover .course-image {
  transform: scale(1.03);
}


    .course-card {
      background: var(--card);
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.4s ease;
      position: relative;
    }

    .course-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .course-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--orange);
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      z-index: 2;
    }

    
    .course-image::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    }

    .course-content {
      padding: 25px;
    }

    .course-category {
      color: var(--orange);
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 10px;
      display: block;
    }

    .course-card h3 {
      margin-bottom: 10px;
      font-size: 1.3rem;
    }

    .course-card p {
      font-size: 0.95rem;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .course-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 20px;
    }

    .price {
      font-weight: 700;
      font-size: 1.4rem;
    }

    .original-price {
      text-decoration: line-through;
      color: var(--muted);
      font-size: 1rem;
      margin-left: 5px;
    }

    .rating {
      color: #FFD700;
      font-size: 0.9rem;
    }

    /* FEATURES */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .feature-card {
      background: var(--card);
      padding: 40px 30px;
      border-radius: 16px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--gradient);
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .feature-icon {
      font-size: 3rem;
      margin-bottom: 20px;
      color: var(--orange);
    }

    .feature-card h3 {
      margin-bottom: 15px;
      font-size: 1.4rem;
    }

    /* TESTIMONIALS */
    .testimonials {
      background: rgba(28, 28, 46, 0.5);
    }

    .testimonial-slider {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }

    .testimonial-card {
      background: var(--card);
      padding: 40px;
      border-radius: 20px;
      margin: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .testimonial-text {
      font-size: 1.1rem;
      margin-bottom: 25px;
      line-height: 1.8;
      position: relative;
      padding-left: 30px;
    }

    .testimonial-text::before {
      content: '"';
      position: absolute;
      left: 0;
      top: -10px;
      font-size: 3rem;
      color: var(--orange);
      opacity: 0.5;
    }

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

    .author-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
    }

    .author-info h4 {
      font-size: 1.1rem;
      margin-bottom: 5px;
    }

    .author-info p {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .slider-controls {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .slider-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--card);
      border: none;
      color: var(--text);
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .slider-btn:hover {
      background: var(--orange);
    }

    /* CTA */
    .cta-section {
      text-align: center;
    }

    .cta-box {
      background: linear-gradient(135deg, #ff7a18, #ffb347);
      padding: 80px 40px;
      border-radius: 30px;
      color: #000;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(255, 122, 24, 0.3);
    }

    .cta-box::before {
      content: '';
      position: absolute;
      width: 200px;
      height: 200px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      top: -100px;
      right: -100px;
    }

    .cta-box::after {
      content: '';
      position: absolute;
      width: 150px;
      height: 150px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      bottom: -75px;
      left: -75px;
    }

    .cta-box h2 {
      font-size: 2.8rem;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
    }

    .cta-box p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      position: relative;
      z-index: 2;
      color: rgba(0, 0, 0, 0.8);
    }

    .cta-btn {
      background: var(--dark);
      color: white;
      position: relative;
      z-index: 2;
    }

    .cta-btn:hover {
      background: #000;
    }

    /* FAQ */
    .faq-section {
      background: rgba(15, 15, 26, 0.5);
    }

    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--card);
      border-radius: 15px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-question {
      padding: 20px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      font-size: 1.1rem;
    }

    .faq-question i {
      color: var(--orange);
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question i {
      transform: rotate(45deg);
    }

    .faq-answer {
      padding: 0 30px;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
      color: var(--muted);
    }

    .faq-item.active .faq-answer {
      padding: 0 30px 20px;
      max-height: 500px;
    }

    /* FOOTER */
    footer {
      background: var(--darker);
      padding: 70px 0 30px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .footer-logo .logo-icon {
      width: 50px;
      height: 50px;
    }

    .footer-logo .logo-text {
      font-size: 1.8rem;
    }

    .footer-description {
      color: var(--muted);
      margin-bottom: 25px;
    }

    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--card);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--orange);
      transform: translateY(-3px);
    }

    .footer-heading {
      font-size: 1.3rem;
      margin-bottom: 25px;
      color: var(--text);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 15px;
    }

    .footer-links a {
      color: var(--muted);
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--orange);
      padding-left: 5px;
    }

    .newsletter-form {
      display: flex;
      margin-top: 20px;
    }

    .newsletter-input {
      flex: 1;
      padding: 12px 15px;
      background: var(--card);
      border: none;
      border-radius: 5px 0 0 5px;
      color: var(--text);
    }

    .newsletter-btn {
      background: var(--orange);
      color: white;
      border: none;
      padding: 0 20px;
      border-radius: 0 5px 5px 0;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-btn:hover {
      background: var(--orange-dark);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid var(--card);
      color: var(--muted);
      font-size: 0.9rem;
    }

    /* MOBILE RESPONSIVE */
    @media (max-width: 992px) {
      .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
      }
      
      .hero-stats {
        justify-content: center;
      }
      
      .hero-bg {
        display: none;
      }
      
      .section-title {
        font-size: 2rem;
      }
    }

    @media (max-width: 768px) {
      nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      }
      
      nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }
      
      .mobile-menu-btn {
        display: block;
      }
      .Learn-button{
          display:none;
      }
      
      .hero-text h1 {
        font-size: 2.5rem;
      }
      
      .cta-box h2 {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 576px) {
      .section-title {
        font-size: 1.8rem;
      }
      
      .hero-text h1 {
        font-size: 2.7rem;
      }
      
      .hero-stats {
        flex-direction: none;
        gap: 20px;
      }
      
      .cta-box {
        padding: 50px 20px;
      }
      
      .cta-box h2 {
        font-size: 1.8rem;
      }
    }

    /* Animations */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    /* Logo Image Styles */
.logo-img {
  height: 70px;
  width: auto;
  transition: all 0.3s ease;
}

.footer-logo .logo-img {
  height: 70px;
}

/* Mobile responsive adjustment */
@media (max-width: 768px) {
  .logo-img {
    height: 55px;
  }
}