
    /* Base Styles */
    :root {
      --primary-color: #4e73df;
      --primary-dark: #2e59d9;
      --primary-light: rgba(78, 115, 223, 0.1);
      --secondary-color: #f8f9fc;
      --dark-color: #2c3e50;
      --light-color: #ffffff;
      --gray-color: #6c757d;
      --light-gray: #f8f9fa;
      --dark-gray: #343a40;
      --success-color: #1cc88a;
      --warning-color: #f6c23e;
      --danger-color: #e74a3b;
      --info-color: #36b9cc;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      overflow-x: hidden;
      line-height: 1.6;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
      line-height: 1.3;
    }
    
    a {
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    img {
      max-width: 100%;
      height: auto;
    }
    
    .logo{
     max-width: 20%;
     }
     
    .btn {
      font-weight: 500;
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      transition: all 0.3s ease;
    }
    
    .btn-primary {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
    }
    
    .btn-primary:hover {
      background-color: var(--primary-dark);
      border-color: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(78, 115, 223, 0.3);
    }
    
    .btn-outline-primary {
      color: var(--primary-color);
      border-color: var(--primary-color);
    }
    
    .btn-outline-primary:hover {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      color: white;
    }
    
    .btn-lg {
      padding: 0.75rem 2rem;
      font-size: 1.1rem;
    }
    
    .btn-sm {
      padding: 0.25rem 1rem;
      font-size: 0.875rem;
    }
    
    .section-header {
      margin-bottom: 3rem;
      text-align: center;
    }
    
    .section-subtitle {
      display: inline-block;
      color: var(--primary-color);
      background-color: rgba(78, 115, 223, 0.1);
      padding: 0.25rem 1rem;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }
    
    .section-title {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      position: relative;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--primary-color);
    }
    
    .section-description {
      color: var(--gray-color);
      max-width: 700px;
      margin: 0 auto;
    }
    
    /* Top Bar */
    .top-bar {
      background-color: var(--dark-color);
      color: white;
      font-size: 0.875rem;
    }
    
    .top-bar a {
      color: rgba(255, 255, 255, 0.8);
      margin-right: 1rem;
      transition: all 0.3s ease;
    }
    
    .top-bar a:hover {
      color: white;
      text-decoration: none;
    }
    
    .top-bar a i {
      margin-right: 0.5rem;
    }
    
    .social-links a {
      color: white;
      margin-left: 1rem;
      font-size: 0.875rem;
      transition: all 0.3s ease;
    }
    
    .social-links a:hover {
      color: var(--primary-color);
    }
    
    /* Navbar */
    .navbar {
      background-color: rgba(46, 89, 217, 0.9);
      padding: 15px 0;
      transition: all 0.3s ease;
    }
    
    .navbar.scrolled {
      background-color: var(--primary-dark);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
    }
    
    .nav-link {
      font-weight: 500;
      padding: 0.5rem 1rem;
      transition: all 0.3s ease;
    }
    
    .nav-link:hover {
      color: rgba(255, 255, 255, 0.8);
    }
    
    .dropdown-menu {
      border: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      padding: 0.5rem 0;
    }
    
    .dropdown-item {
      padding: 0.5rem 1.5rem;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    
    .dropdown-item:hover {
      background-color: rgba(78, 115, 223, 0.1);
      color: var(--primary-color);
    }
    
    /* Cart Dropdown */
    .cart-dropdown .btn-cart {
      position: relative;
      color: white;
      background: none;
      border: none;
      font-size: 1.25rem;
    }
    
    .cart-dropdown .cart-count {
      position: absolute;
      top: -5px;
      right: -5px;
      background-color: var(--danger-color);
      color: white;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      font-size: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .wishlist-dropdown .wishlist-count {
    position: absolute;
      top: -5px;
      right: -5px;
      background-color: var(--danger-color);
      color: white;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      font-size: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
     }
    
    .cart-dropdown-menu {
      min-width: 300px;
      padding: 1rem;
      border: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    
    
    .cart-item {
      display: flex;
      align-items: center;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .cart-item-img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 5px;
      margin-right: 1rem;
    }
    
    .cart-item-details {
      flex: 1;
      position: relative;
    }
    
    .cart-item-details h6 {
      font-size: 0.875rem;
      margin-bottom: 0.25rem;
    }
    
    .cart-item-details p {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--primary-color);
      margin-bottom: 0;
    }
    
    .btn-remove {
      position: absolute;
      top: 0;
      right: 0;
      background: none;
      border: none;
      color: var(--gray-color);
      font-size: 0.875rem;
      transition: all 0.3s ease;
    }
    
    .btn-remove:hover {
      color: var(--danger-color);
    }
    
    .cart-footer {
      padding-top: 1rem;
    }
    
    .cart-total {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1rem;
      font-weight: 600;
    }
    
    /* User Dropdown */
    .user-dropdown img {
      width: 40px;
      height: 40px;
      object-fit: cover;
    }
    
    /* Hero Section */
    .hero-section {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, #2e59d9 0%, #4e73df 100%);
      color: white;
      overflow: hidden;
      padding-top: 80px;
      padding-inline: 40px;
    }
    
    #particles-js {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
    }
    
    .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }
    
    .hero-subtitle {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      opacity: 0.9;
      max-width: 600px;
    }
    
    .hero-search .search-form {
      position: relative;
      max-width: 600px;
    }
    
    .hero-search .form-control {
      height: 60px;
      border-radius: 50px;
      padding-left: 1.5rem;
      border: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .hero-search .btn {
      position: absolute;
      top: 5px;
      right: 5px;
      height: 50px;
      padding: 0 1.5rem;
      border-radius: 50px;
    }
    
    .hero-stats {
      display: flex;
      margin-top: 2rem;
    }
    
    .hero-stats .stat-item {
      margin-right: 2rem;
    }
    
    .hero-stats .stat-item h3 {
      font-size: 2rem;
      margin-bottom: 0;
      color: white;
    }
    
    .hero-stats .stat-item p {
      font-size: 0.875rem;
      opacity: 0.8;
      margin-bottom: 0;
    }
    
    .hero-image-container {
      position: relative;
    }
    
    .hero-image {
      border-radius: 10px;
      animation: float 6s ease-in-out infinite;
    }
    
    .hero-badge {
      position: absolute;
      background: white;
      border-radius: 10px;
      padding: 1rem;
      display: flex;
      align-items: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      animation: pulse 2s infinite;
    }
    
    .hero-badge-1 {
      top: -20px;
      left: -20px;
      animation-delay: 0.5s;
    }
    
    .hero-badge-2 {
	    top: 268px;
	    right: -111px;
	    animation-delay: 1s;
	}
    
    .badge-icon {
      width: 50px;
      height: 50px;
      background-color: rgba(78, 115, 223, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 1rem;
      color: var(--primary-color);
      font-size: 1.5rem;
    }
    
    .badge-content h5 {
      font-size: 1rem;
      margin-bottom: 0.25rem;
          color: #3e66dc;
    }
    
    .badge-content p {
      font-size: 0.875rem;
      color: var(--gray-color);
      margin-bottom: 0;
    }
    
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
      100% { transform: translateY(0px); }
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    /* Partners Section */
    .partners-section {
      background-color: white;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .partners-slider {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .partner-item {
      padding: 0 1rem;
      opacity: 0.5;
      transition: all 0.3s ease;
    }
    
    .partner-item:hover {
      opacity: 1;
    }
    
    .partner-item img {
      filter: grayscale(100%);
      transition: all 0.3s ease;
    }
    
    .partner-item:hover img {
      filter: grayscale(0%);
    }
    
    /* Features Section */
    .features-section {
      background-color: var(--light-gray);
    }
    
    .feature-card {
      background-color: white;
      border-radius: 10px;
      padding: 2rem;
      height: 100%;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      text-align: center;
    }
    
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .feature-icon {
      width: 80px;
      height: 80px;
      background-color: rgba(78, 115, 223, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--primary-color);
      transition: all 0.3s ease;
    }
    
    .feature-card:hover .feature-icon {
      background-color: var(--primary-color);
      color: white;
    }
    
    .feature-content h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }
    
    .feature-content p {
      color: var(--gray-color);
      margin-bottom: 1.5rem;
    }
    
    .feature-link {
      color: var(--primary-color);
      font-weight: 500;
      transition: all 0.3s ease;
    }
    
    .feature-link:hover {
      color: var(--primary-dark);
    }
    
    .feature-link i {
      margin-left: 0.5rem;
      transition: all 0.3s ease;
    }
    
    .feature-link:hover i {
      transform: translateX(5px);
    }
    
    /* About Section */
    .about-section {
      position: relative;
    }
    
    .about-image {
      position: relative;
    }
 
    .experience-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background-color: var(--primary-color);
      color: white;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 30px rgba(78, 115, 223, 0.3);
    }
    
    .experience-badge h2 {
      font-size: 2rem;
      margin-bottom: 0;
      line-height: 1;
    }
    
    .experience-badge p {
      font-size: 0.875rem;
      margin-bottom: 0;
      text-align: center;
    }
    
    .about-features .feature-item {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }
    
    .about-features .feature-icon {
      width: 30px;
      height: 30px;
      background-color: rgba(78, 115, 223, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 1rem;
      font-size: 0.875rem;
      color: var(--primary-color);
    }
    
    .about-features h5 {
      font-size: 1rem;
      margin-bottom: 0;
    }
    
    .about-stats {
      display: flex;
      margin-top: 2rem;
    }
    
    .about-stats .stat-item {
      margin-right: 2rem;
    }
    
    .about-stats .stat-item h3 {
      font-size: 2rem;
      margin-bottom: 0;
      color: var(--primary-color);
    }
    
    .about-stats .stat-item p {
      font-size: 0.875rem;
      color: var(--gray-color);
      margin-bottom: 0;
    }
    
    /* Categories Section */
    .categories-section {
      background-color: white;
    }
    
    .category-card {
      background-color: white;
      border-radius: 10px;
      padding: 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      border-color: rgba(78, 115, 223, 0.2);
    }
    
    .category-icon {
      width: 60px;
      height: 60px;
      background-color: rgba(78, 115, 223, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 1.5rem;
      color: var(--primary-color);
      transition: all 0.3s ease;
    }
    
    .category-card:hover .category-icon {
      background-color: var(--primary-color);
      color: #ffff;
    }
    
    .category-card h3 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    
    .category-card p {
      font-size: 0.875rem;
      color: var(--gray-color);
      margin-bottom: 0;
    }
    
    /* Courses Section */
    .courses-section {
      background-color: var(--light-gray);
    }
    
    .course-tabs .nav-pills {
      border-bottom: none;
    }
    
    .course-tabs .nav-link {
      color: var(--gray-color);
      font-weight: 500;
      border-radius: 50px;
      padding: 0.5rem 1.5rem;
      margin: 0 0.25rem;
      transition: all 0.3s ease;
    }
    
    .course-tabs .nav-link.active {
      background-color: var(--primary-color);
      color: white;
    }
    
    .course-tabs .nav-link:hover:not(.active) {
      color: var(--primary-color);
    }
    
    .course-card {
      background-color: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      height: 100%;
      margin-bottom: 1.5rem;
    }
    
    .course-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .course-image {
      position: relative;
      overflow: hidden;
    }
    
    .course-image img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .course-card:hover .course-image img {
      transform: scale(1.1);
    }
    
    .course-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background-color: var(--success-color);
      color: white;
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.75rem;
      z-index: 2;
    }
    
    .course-badge.trending {
      background-color: var(--danger-color);
    }
    
    .course-badge.new {
      background-color: var(--info-color);
    }
    
    .course-wishlist {
      position: absolute;
      top: 15px;
      right: 15px;
      z-index: 2;
    }
    
    .wishlist-btn {
      width: 36px;
      height: 36px;
      background-color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      color: #df4b42;
      transition: all 0.3s ease;
    }
    
    .wishlist-btn:hover {
      color: var(--danger-color);
    }
    
    .wishlist-btn.active {
      color: var(--danger-color);
    }
    
    .course-content {
      padding: 1.5rem;
    }
    
    .course-category {
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
      display: inline-block;
    }
    
    .course-content h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }
    
    .course-content h3 a {
      color: var(--dark-color);
      transition: all 0.3s ease;
    }
    
    .course-content h3 a:hover {
      color: var(--primary-color);
    }
    
    .course-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }
    
    .course-instructor {
      display: flex;
      align-items: center;
    }
    
    .instructor-img {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 0.5rem;
    }
    
    .course-instructor span {
      font-size: 0.875rem;
      color: var(--gray-color);
    }
    
    .course-rating {
      color: var(--warning-color);
      font-size: 0.875rem;
    }
    
    .course-rating span {
      color: var(--gray-color);
      margin-left: 0.25rem;
    }
    
    .course-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .course-price .current-price {
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--dark-color);
      font-family: 'Poppins';
    }
    
    .course-price .original-price {
      font-size: 0.875rem;
      color: var(--gray-color);
      text-decoration: line-through;
      margin-left: 0.5rem;
    }
    
    .course-actions .btn {
      padding: 0.25rem 1rem;
      font-size: 0.875rem;
    }
    
    /* Call to Action Section */
    .cta-section {
      background-color: var(--primary-color);
      color: white;
    }
    
    .cta-section h2 {
      color: white;
    }
    
    /* Instructors Section */
    .instructor-card {
      background-color: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    
    .instructor-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .instructor-image {
      position: relative;
    }
    
    .instructor-image img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    
    .social-links {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.5);
      padding: 1rem;
      display: flex;
      justify-content: center;
      opacity: 0;
      transition: all 0.3s ease;
    }
    
    .instructor-card:hover .social-links {
      opacity: 1;
    }
    
    .social-links a {
      color: white;
      margin: 0 0.5rem;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }
    
    .social-links a:hover {
      background-color: var(--primary-color);
      transform: translateY(-3px);
    }
    
    .instructor-info {
      padding: 1.5rem;
      text-align: center;
    }
    
    .instructor-info h3 {
      font-size: 1.25rem;
      margin-bottom: 0.25rem;
    }
    
    .instructor-info p {
      color: var(--gray-color);
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }
    
    .instructor-stats {
      display: flex;
      justify-content: center;
      margin-bottom: 1rem;
    }
    
    .stat-item {
      margin: 0 0.75rem;
      text-align: center;
    }
    
    .stat-item i {
      color: var(--primary-color);
      margin-bottom: 0.25rem;
    }
    
    .stat-item span {
      font-size: 39px;
      font-weight: 700;
    }
    
    /* Testimonials Section */
    .testimonial-card {
      background-color: white;
      border-radius: 10px;
      padding: 2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      margin: 1rem;
    }
    
    .rating {
      color: var(--warning-color);
      margin-bottom: 1rem;
    }
    
    .testimonial-content p {
      font-style: italic;
      color: var(--gray-color);
      margin-bottom: 1.5rem;
      position: relative;
    }
    
    .testimonial-content p::before,
    .testimonial-content p::after {
      content: '"';
      font-size: 3rem;
      color: rgba(78, 115, 223, 0.2);
      position: absolute;
    }
    
    .testimonial-content p::before {
      top: -20px;
      left: -10px;
    }
    
    .testimonial-content p::after {
      bottom: -40px;
      right: -10px;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
    }
    
    .author-image {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 1rem;
    }
    
    .author-info h4 {
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
      font-weight: 600;
    }
    
    .author-info p {
      color: var(--gray-color);
      font-size: 0.875rem;
      margin-bottom: 0;
    }
    
    /* Blog Section */
    .blog-card {
      background-color: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      height: 100%;
    }
    
    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .blog-image {
      position: relative;
    }
    
    .blog-image img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    
    .blog-date {
      position: absolute;
      top: 20px;
      right: 20px;
      background-color: var(--primary-color);
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }
    
    .blog-date span:first-child {
      font-size: 1.25rem;
      font-weight: 700;
    }
    
    .blog-date span:last-child {
      font-size: 0.75rem;
      text-transform: uppercase;
    }
    
    .blog-content {
      padding: 1.5rem;
    }
    
    .blog-meta {
      display: flex;
      margin-bottom: 0.75rem;
      font-size: 0.875rem;
      color: var(--gray-color);
    }
    
    .blog-meta span {
      margin-right: 1rem;
    }
    
    .blog-meta i {
      margin-right: 0.25rem;
    }
    
    .blog-content h3 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }
    
    .blog-content h3 a {
      color: var(--dark-color);
      transition: all 0.3s ease;
    }
    
    .blog-content h3 a:hover {
      color: var(--primary-color);
    }
    
    .blog-content p {
      color: var(--gray-color);
      margin-bottom: 1.5rem;
    }
    
    .read-more {
      color: var(--primary-color);
      font-weight: 500;
      transition: all 0.3s ease;
    }
    
    .read-more:hover {
      color: var(--primary-dark);
    }
    
    .read-more i {
      margin-left: 0.5rem;
      transition: all 0.3s ease;
    }
    
    .read-more:hover i {
      transform: translateX(5px);
    }
    
    /* Newsletter Section */
    .newsletter-section {
      background-color: var(--dark-color);
      color: white;
    }
    
    .newsletter-form .form-control {
      height: 50px;
      border-radius: 50px 0 0 50px;
      border: none;
      padding-left: 1.5rem;
    }
    
    .newsletter-form .btn {
      border-radius: 0 50px 50px 0;
      padding: 0 1.5rem;
      height: 50px;
      background-color: var(--primary-color);
      border-color: var(--primary-color);
    }
    
    .newsletter-form .btn:hover {
      background-color: var(--primary-dark);
      border-color: var(--primary-dark);
    }
    
    .form-check-input {
      margin-top: 0.2rem;
    }
    
    .form-check-label {
      font-size: 0.875rem;
      opacity: 0.8;
    }
    
    /* Footer */
    .footer {
      background-color: #1a1a1a;
      color: white;
    }
    
    .footer-logo {
      margin-bottom: 1.5rem;
    }
    
    .footer-about p {
      opacity: 0.8;
      margin-bottom: 1.5rem;
    }
    
    .footer-contact p {
      margin-bottom: 0.5rem;
      opacity: 0.8;
    }
    
    .footer-contact i {
      width: 20px;
      margin-right: 0.5rem;
      text-align: center;
    }
    
    .footer-heading {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.75rem;
    }
    
    .footer-heading::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background-color: var(--primary-color);
    }
    
    .footer-links {
      list-style: none;
      padding-left: 0;
    }
    
    .footer-links li {
      margin-bottom: 0.75rem;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
      color: var(--primary-color);
      padding-left: 5px;
    }
    
    .app-download img {
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    
    .app-download img:hover {
      transform: translateY(-3px);
    }
    
    .footer-social {
      margin-top: 1rem;
    }
    
    .footer-social a {
      color: white;
      margin-left: 1rem;
      font-size: 1rem;
      transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
      color: var(--primary-color);
    }
    
    /* WhatsApp Floating Button */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 100;
    }
    
    .whatsapp-float a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      color: white;
      border-radius: 50%;
      font-size: 1.5rem;
      box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
      transition: all 0.3s ease;
    }
    
    .whatsapp-float a:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    
    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 100px;
      right: 30px;
      z-index: 99;
      width: 50px;
      height: 50px;
      background-color: var(--primary-color);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(78, 115, 223, 0.3);
    }
    
    .back-to-top.active {
      opacity: 1;
      visibility: visible;
      bottom: 100px;
    }
    
    .back-to-top:hover {
      background-color: var(--primary-dark);
      transform: translateY(-3px);
    }
    
    /* Responsive Styles */
    @media (max-width: 1199.98px) {
      .hero-title {
        font-size: 3rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 991.98px) {
      .hero-title {
        font-size: 2.5rem;
      }
      
      .hero-subtitle {
        font-size: 1.1rem;
      }
      
      .section-title {
        font-size: 1.75rem;
      }
      
      .navbar-collapse {
        background-color: var(--primary-dark);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
      }
      
      .navbar-nav {
        margin-bottom: 1rem;
      }
      
      .nav-link {
        padding: 0.5rem 0;
      }
      
      .dropdown-menu {
        background-color: rgba(255, 255, 255, 1);
        margin-left: 1rem;
      }
      
      .dropdown-item {
        color: #000000 !important;
      }
      
      .logo-img {
		  max-height: 40px!important;
		  width: auto!important;
		}
      
      .dropdown-item:hover {
        color: white;
        background-color: transparent;
      }
    }
    
    @media (max-width: 767.98px) {
      .hero-section {
        text-align: center;
        padding-top: 80px;
      }
      
      .hero-title {
        font-size: 2.2rem;
      }
      
      .hero-stats {
        justify-content: center;
      }
      
      .section-title::after {
        display: none;
      }
      
      .course-tabs .nav-link {
        padding: 0.25rem 0.75rem;
        font-size: 0.875rem;
      }
      
      .testimonial-card {
        padding: 1.5rem;
      }
    }
    
    @media (max-width: 575.98px) {
      .hero-title {
        font-size: 1.8rem;
      }
      
      .hero-subtitle {
        font-size: 1rem;
      }
      
      .hero-search .btn {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-top: 0.5rem;
        border-radius: 50px;
      }
      
      .section-title {
        font-size: 1.5rem;
      }
      
      .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
      }
      
      .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }
    }
    
     
#cart-items-container {
    max-height: 300px; /* Limit the height */
    overflow-y: auto; /* Enable vertical scroll */
    padding-right: 8px; /* Avoid content hiding under scrollbar */
    scroll-behavior: smooth; /* Smooth scrolling effect */
}
 
/* Optional: Make scrollbar nicer in Webkit browsers */


.wishlisted {
	border: 2px solid red;
}
/* Wishlist Dropdown */
.wishlist-dropdown .btn-wishlist {
  position: relative;
  color: white;
  background: none;
  border: none;
  font-size: 1.25rem;
}

.wishlist-dropdown .wishlist-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--danger-color);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-dropdown-menu {
  min-width: 300px;
  padding: 1rem;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Wishlist item style (like cart item) */
.wishlist-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.wishlist-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 1rem;
}

.wishlist-item-details {
  flex: 1;
  position: relative;
}

.wishlist-item-details h6 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.wishlist-item-details p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}

.wishlist-footer {
      padding-top: 1rem;
}

.wishlist-total {
     display: flex;
      justify-content: space-between;
      margin-bottom: 1rem;
      font-weight: 600;
}



.btn-remove-wishlist-page:hover {
  color: var(--danger-color);
}
#wishlist-items-container {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 8px;
    scroll-behavior: smooth;
}
.btn-remove-wlist {
      position: absolute;
      top: 0;
      right: 0;
      background: none;
      border: none;
      color: var(--gray-color);
      font-size: 0.875rem;
      transition: all 0.3s ease;
    }
    
    
.navbar-brand.logo-container {
  max-width: 180px;
  padding: 0;
}
.logo-img {
  max-height: 58px;
  width: auto;
}

.lms-nav .nav-item a.nav-link {color: #ffff;}

.mid-icon {
	margin: 0 auto;
	margin-bottom: 15px;
}