 /* Base Styles & Variables */
    :root {
      --primary: #c755fc;
      --primary-dark: #b600ce;
      --secondary: #ff65d8;
      --accent: #b02ee4;
      --dark: #2c3e50;
      --light: #f8f9fa;
      --gray: #6c757d;
      --light-gray: #e9ecef;
      --white: #ffffff;
      --black: #212529;
      
      --font-main: 'Poppins', sans-serif;
      --font-secondary: 'Open Sans', sans-serif;
      
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
      --shadow-md: 0 luodgjgy8rtwe09fioffap20t894px 12px rgba(0,0,0,0.15);
      --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
      
      --transition: all 0.3s ease;
      --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-secondary);
      color: var(--dark);
      background-color: var(--light);
      line-height: 1.6;
      overflow-x: hidden;
      position: relative;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-main);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    section {
      padding: 5rem 0;
      position: relative;
    }

    .btn {
      display: inline-block;
      padding: 0.75rem 1.75rem;
      border-radius: 50px;
      font-weight: 600;
      font-family: var(--font-main);
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      border: 2px solid transparent;
    }

    .btn-primary {
      background-color: var(--primary);
      color: var(--white);
      box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
    }

    .btn-primary:hover {
      background-color: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
    }

    .btn-outline {
      background-color: transparent;
      color: var(--primary);
      border-color: var(--primary);
    }

    .btn-outline:hover {
      background-color: var(--primary);
      color: var(--white);
      transform: translateY(-3px);
    }

    .btn-lg {
      padding: 1rem 2.25rem;
      font-size: 1.1rem;
    }

    .btn-video {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
    }

    .section-header .subtitle {
      color: var(--primary);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.9rem;
      margin-bottom: 1rem;
      display: inline-block;
      position: relative;
    }

    /* .section-header .subtitle::after {
      content: '';
      position: absolute;
      width: 40px;
      height: 2px;
      background-color: var(--primary);
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
    } */

    .section-header .title {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    .section-header .title span {
      color: var(--primary);
      position: relative;
    }

    .section-header .title span::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 8px;
      background-color: rgba(108, 99, 255, 0.2);
      bottom: 8px;
      left: 0;
      z-index: -1;
      border-radius: 4px;
    }

    .section-header .description {
      max-width: 600px;
      margin: 0 auto;
      color: var(--gray);
    }

    .text-gradient {
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

   

   
 /* Header with Advanced Animation */
  
  /* Navbar - Initial State */
    .navbar {
      position: fixed;
      top: 0;
      left:0px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 5%;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
      z-index: 1000;
      transition: all 0.4s ease;
    }

    /* Navbar - Scrolled State */
    .navbar.scrolled {
      padding: 1rem 5%;
      background: rgba(255, 255, 255, 0.85);
      box-shadow: 0 12px 40px rgba(31, 38, 135, 0.2);
      backdrop-filter: blur(12px);
      border-radius: 0 0 28px 28px;
      margin: 1.8rem 2.5rem;
      width: calc(100% - 5rem);
      top: 0;
      left: 0.1rem;
      animation: slideDown 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 1px solid rgba(255, 255, 255, 0.5);
    }
    
    .navbar.scrolled:hover {
      box-shadow: 0 15px 45px rgba(79, 140, 255, 0.3);
      transform: translateY(-3px);
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #222;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      order: 1; /* Ensure logo stays first */
    }
    
    .logo:hover {
      transform: scale(1.03);
      text-shadow: 0 4px 15px rgba(146, 146, 146, 0.25);
    }

    .logo i {
      color: #b600ce;
      transition: transform 0.3s ease;
    }

    .logo:hover i {
      transform: rotate(-15deg);
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      order: 2; /* Nav links in the middle */
    }

    .nav-links li a {
      color: #222;
      text-decoration: none;
      font-weight: 500;
      font-size: 1.05rem;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-links li a:hover {
      color: #222;
    }

    .nav-links li a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #222;
      transition: width 0.4s ease;
    }

    .nav-links li a:hover::after {
      width: 100%;
    }

    /* Enhanced Dropdown */
    .dropdown-content {
      display: none;
      position: absolute;
      top: 4.3rem;
      left: 33.5rem;
      background: rgb(255, 255, 255);
      min-width: 560px;
      box-shadow: 0 12px 32px rgba(145, 145, 145, 0.15);
      border-radius: 16px;
      z-index: 100;
      padding: 0.8rem 0;
      animation: fadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      transform-origin: top center;
    }
    
    .dropdown-content::before {
      content: '';
      position: absolute;
      top: -8px;
      left: 25px;
      width: 16px;
      height: 16px;
      background: white;
      transform: rotate(45deg);
      z-index: -1;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      border-left: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(15px) scale(0.95); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    
    .dropdown-content a {
      color: #333;
      padding: 2rem 1.5rem;
      display: flex;
      height: 100px;
      width: 180px;
      align-items: center;
      gap: 0.8rem;
      text-decoration: none;
      font-size: 1.1rem;
      border-radius: 8px;
      transition: all 0.25s ease;
      margin: 0.3rem 0.5rem;
      background: rgba(255, 255, 255, 0.5);
      border: 1px solid rgba(224, 231, 255, 0.3);
      z-index: 1;
    }
    
    .dropdown-content a:hover {
      background: rgba(255, 255, 255, 0.952);
      color: #222;

      transform: translateX(5px);
      box-shadow: 2px 3px 10px rgba(122, 122, 122, 0.1);
    }
    
    .dropdown:hover .dropdown-content {
      display: block;
    }
    .subdropdown {
      display: flex;
      flex-wrap: wrap;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      order: 3; /* Actions on the right */
    }

    .cta-btn {
         background: linear-gradient(90deg, #c755fc 0%, #b600ce 100%); 

      color: #fff;
      border: none;
      padding: 0.8rem 1.8rem;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 15px rgba(146, 146, 146, 0.2);
      position: relative;
      overflow: hidden;
    }
    
    .cta-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: 0.5s;
    }
    
    .cta-btn:hover {
    
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 6px 20px rgba(128, 128, 128, 0.4);
    }
    
    .cta-btn:hover::before {
      left: 100%;
    }

    /* Profile Section */
    .profile {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: #fff;
      border-radius: 50px;
      padding: 0.5rem 1.7rem 0.4rem 0.4rem;
      box-shadow: 0 4px 15px rgba(145, 145, 145, 0.2);
      font-weight: 600;
      color: #222;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .profile::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(209, 209, 209, 0.5), transparent);
      transform: translateX(-100%);
      transition: 0.5s;
    }
    
    .profile:hover {
      background: #aaaaaa;
      box-shadow: 0 6px 20px rgba(155, 155, 155, 0.3);
      transform: translateY(-2px);
    }
    
    .profile:hover::before {
      transform: translateX(100%);
    }
    
    .profile i {
      background: linear-gradient(90deg, #222 0%, #222 100%);
      color: #fff;
      border-radius: 50%;
      padding: 0.6rem;
      font-size: 1.3rem;
      box-shadow: 0 2px 8px rgba(185, 185, 185, 0.3);
      transition: all 0.3s ease;
    }
    
    .profile:hover i {
      transform: scale(1.1);
    }
    
    /* Profile Dropdown */
    .profile-dropdown {
      display: none;
      position: absolute;
      top: 4.5rem;
      right: 6.5rem;
      background: rgba(255, 255, 255, 0.95);
      min-width: 220px;
      box-shadow: 0 12px 32px rgba(182, 182, 182, 0.15);
      border-radius: 16px;
      z-index: 100;
      padding: 0.8rem 0;
      animation: fadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      transform-origin: top right;
    }
    
    .profile-dropdown::before {
      content: '';
      position: absolute;
      top: -8px;
      right: 25px;
      width: 16px;
      height: 16px;
      background: white;
      transform: rotate(45deg);
      z-index: -1;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      border-left: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .profile-dropdown a {
      color: #333;
      padding: 0.9rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.9rem;
      text-decoration: none;
      font-size: 1.1rem;
      border-radius: 8px;
      transition: all 0.25s ease;
      margin: 0.3rem 0.5rem;
      background: rgba(240, 240, 240, 0.5);
      border: 1px solid rgba(223, 223, 223, 0.3);
    }
    
    .profile-dropdown a:hover {
      background: rgba(255, 255, 255, 0.7);
      color: #222;
      transform: translateX(-3px);
      box-shadow: 0 3px 10px rgba(255, 255, 255, 0.1);
    }
    
    .profile-container:hover .profile-dropdown {
      display: block;
    }

  
    .hero-btn {
      display: inline-block;
      background: linear-gradient(90deg, #c755fc 0%, #b600ce 100%); 
    
      color: #fff;
      padding: 1rem 2.5rem;
      border-radius: 30px;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.5px;
      box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .hero-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(54, 54, 54, 0.4);
    }

    .hero-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: 0.5s;
    }

    .hero-btn:hover::before {
      left: 100%;
    }

    
    /* Page content */
    .page-content {
      padding: 6rem 5%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      font-size: 2.2rem;
      text-align: center;
      margin-bottom: 4rem;
      color: #222;
      position: relative;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #222, #222);
      border-radius: 2px;
    }

   
    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(5px);
      align-items: center;
      justify-content: center;
    }
    
    .modal.active {
      display: flex;
      animation: fadeIn 0.4s ease;
    }
    
    .modal-content {
      background: #fff;
      padding: 2.8rem 2.5rem;
      border-radius: 24px;
      box-shadow: 0 20px 50px rgba(163, 163, 163, 0.3);
      width: 380px;
      max-width: 90%;
      position: relative;
      animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 1px solid rgba(224, 231, 255, 0.8);
    }
    
    @keyframes scaleUp {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }
    
    .modal-content h2 {
      margin-top: 0;
      color: #222;
      font-size: 1.8rem;
      margin-bottom: 1.8rem;
      text-align: center;
      font-weight: 700;
      text-shadow: 0 2px 5px rgba(79, 140, 255, 0.1);
    }
    
    .modal-content label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #333;
      font-size: 1.05rem;
    }
    
    .modal-content input {
      width: 100%;
      padding: 0.8rem 1rem;
      margin-bottom: 1.2rem;
      border: 1px solid #e0e7ff;
      border-radius: 12px;
      font-size: 1.05rem;
      background: #f4f6fb;
      transition: all 0.3s ease;
      box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    }
    
    .modal-content input:focus {
      border: 1.5px solid #222;
      outline: none;
      box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.2);
      background: #fff;
    }
    
    .modal-content button[type="submit"] {
      width: 100%;
      background: linear-gradient(90deg, #222 0%, #222 100%);
      color: #fff;
      border: none;
      padding: 0.9rem;
      border-radius: 30px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      margin-top: 0.8rem;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(79, 140, 255, 0.3);
    }
    
    .modal-content button[type="submit"]:hover {
      background: linear-gradient(90deg, #222 0%, #222 100%);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(79, 140, 255, 0.4);
    }
    
    .close-modal {
      position: absolute;
      top: 1.2rem;
      right: 1.5rem;
      font-size: 1.5rem;
      color: #aaa;
      background: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }
    
    .close-modal:hover {
      color: #ff4d4d;
      background: rgba(255, 77, 77, 0.1);
      transform: rotate(90deg);
    }
    
    /* Search Bar */
    .search-container {
      display: flex;
      align-items: center;
      position: relative;
    }
    
    .search-icon {
      font-size: 1.2rem;
      color: #222;
      cursor: pointer;
      padding: 0.3rem 0.3rem 0.3rem 0.95rem;
      border-radius: 60%;
      transition: all 0.3s ease;
    }
     .search-icon i{
     position: relative;
     left: -5px;
     }
    .search-icon:hover {
      background: rgba(224, 231, 255, 0.5);
    }
    
    .search-bar {
      position: absolute;
      top: 100%;
      right: 0;
      width: 300px;
      background: #fff;
      border-radius: 30px;
      padding: 0.5rem 1rem;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      display: none;
      z-index: 100;
      animation: slideDown 0.3s ease;
    }
    
    .search-bar input {
      width: 100%;
      border: none;
      outline: none;
      padding: 0.5rem 0;
      font-size: 1rem;
    }
    
    .search-bar.active {
      display: block;
    }
    
    /* Animations */
    @keyframes slideDown {
      from { transform: translateY(-10px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    /* Mobile Menu Button - Hidden by default */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: #222;
      font-size: 1.5rem;
      cursor: pointer;
      order: 2; /* Position between logo and nav-actions */
      padding: 0.5rem;
      margin-right: 1rem;
    }

    /* Mobile Menu - Hidden by default */
    .mobile-menu {
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      background: #fff;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      z-index: 999;
      transform: translateY(-100%);
      opacity: 0;
      transition: all 0.3s ease;
      pointer-events: none;
    }

    .mobile-menu.active {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-nav-links {
      list-style: none;
      padding: 1rem 5%;
    }

    .mobile-nav-links li {
      margin-bottom: 0.5rem;
    }

    .mobile-nav-links li a {
      display: block;
      padding: 1rem;
      color: #222;
      text-decoration: none;
      font-weight: 500;
      font-size: 1.1rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .mobile-nav-links li a:hover {
      background: rgba(224, 231, 255, 0.5);
      color: #222;
    }

    /* Mobile dropdown styles */
    .mobile-dropdown-btn {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 1rem;
      background: none;
      border: none;
      text-align: left;
      font-weight: 500;
      font-size: 1.1rem;
      color: #222;
      cursor: pointer;
    }

    .mobile-dropdown-btn i {
      transition: transform 0.3s ease;
    }

    .mobile-dropdown-btn.active i {
      transform: rotate(180deg);
    }

    .mobile-dropdown-content {
      display: none;
      padding-left: 1.5rem;
      background: rgba(248, 249, 255, 0.5);
      border-radius: 8px;
      margin: 0.5rem 0;
    }

    .mobile-dropdown-content a {
      display: block;
      padding: 0.8rem 1rem;
      color: #333;
      text-decoration: none;
      font-size: 1rem;
      border-radius: 5px;
      transition: all 0.3s ease;
    }

    .mobile-dropdown-content a:hover {
      background: rgba(224, 231, 255, 0.7);
      color: #222;
    }

    .mobile-dropdown-content.active {
      display: block;
    }

   /* Responsive */
@media (max-width: 800px) {
  /* Hide desktop nav links */
  .nav-links {
    display: none;
  }
  
  /* Show mobile menu button */
  .mobile-menu-btn {
    display: block;
  }

  .navbar.scrolled {
    margin: 1rem;
    width: calc(100% - 2rem);
    padding: 0.8rem 3%;
  }

  .nav-actions {
    gap: 1rem;
  }

  .slide-content {
    flex-direction: column;
    text-align: center;
    padding-top: 3rem;
  }
  
  .slide-text {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .slide-content h1 {
    font-size: 2.2rem;
  }
  
  .slide-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .profile span {
    display: none;
  }
  
  .profile {
    padding: 0.4rem;
  }
  
  .search-bar {
    width: 250px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 1.8rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .hero-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  /* Adjust mobile menu for smaller screens */
  .mobile-menu {
    top: 70px;
  }
  
  .mobile-nav-links {
    padding: 0.5rem 3%;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 1rem 3%;
  }
/*   
  .hero{
    margin-top: 160px;
  } */

  .hero-slider {
    height: 70vh;
  }
  
  .slide-text {
    padding: 1rem;
  }
  
  .slide-image-container {
    padding: 1rem;
  }
  
  .slide-image-content {
    max-width: 100%;
  }
  
  .slider-arrows {
    bottom: 3%;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .search-bar {
    width: 200px;
  }
  
  /* Further adjustments for very small screens */
  .mobile-menu {
    top: 60px;
    padding: 0.5rem 0;
  }
  
  .mobile-nav-links li a {
    padding: 0.8rem;
    font-size: 1rem;
  }
  
  .mobile-dropdown-btn {
    padding: 0.8rem;
    font-size: 1rem;
  }
  
  .mobile-dropdown-content {
    padding-left: 1rem;
  }
  
  .mobile-dropdown-content a {
    padding: 0.6rem 0.8rem;
  }
}








    /* Hero Section with Advanced Animation */
    .hero {
      padding: 10rem 0 5rem;
      position: relative;
      overflow: hidden;
      margin-left: -65px;
    }

    .hero-content {
      display: flex;
      align-items: center;
      gap: 3rem;
      
      margin-top: -120px;
    }

    .hero-text {
      flex: 1;
    }

    .hero-image {
      flex: 1;
      position: relative;
    }

    .hero .subtitle {
      font-size: 1rem;
      font-weight: 600;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1rem;
      display: inline-block;
      position: relative;
    }

  

    .hero .title {
      font-size: 3.5rem;
      line-height: 1.2;
 
      margin-bottom: 1.5rem;
      position: relative;
    }

    .hero .title span {
      position: relative;
      display: inline-block;
    }

    .hero .title span::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 8px;
      background: linear-gradient(90deg, rgba(108, 99, 255, 0.2), rgba(255, 101, 132, 0.2));
      bottom: 8px;
      left: 0;
      z-index: -1;
      border-radius: 4px;
    }

    .hero .description {
      font-size: 1.1rem;
      color: var(--gray);
      margin-bottom: 2rem;
      max-width: 500px;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }

    .floating {
      animation: floating 6s ease-in-out infinite;
    }

    .hero-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background-color: var(--white);
      padding: 0.75rem 1.25rem;
      border-radius: 50px;
      box-shadow: var(--shadow-sm);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      animation: pulse 2s infinite;
      z-index: 2;
    }

    .hero-badge i {
      color: var(--primary);
      font-size: 1.25rem;
    }

    .hero-badge span {
      font-weight: 600;
      font-size: 0.9rem;
    }

    .animate-text {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease forwards;
    }

    .animate-text:nth-child(1) {
      animation-delay: 0.2s;
    }

    .animate-text:nth-child(2) {
      animation-delay: 0.4s;
    }

    .animate-text:nth-child(3) {
      animation-delay: 0.6s;
    }

    .animate-buttons {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease forwards 0.8s;
    }



   .features-container {
            max-width: 1300px;
            width: 100%;
            margin-top: 100px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 0 20px;
        }
        
        .subtitle {
            color: #c755fc;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.9rem;
            margin-bottom: 12px;
        }
        
        .title {
            font-size: 2.2rem;
            color: #2a2a2a;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .title span {
            color: #c755fc;
            position: relative;
        }
        
        .title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(108, 99, 255, 0.2);
            z-index: -1;
            border-radius: 4px;
        }
        
        .description {
            color: #666;
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
        }
        
        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            margin-left: 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #c755fc, #c755fc);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
            z-index: -1;
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(108, 99, 255, 0.15);
        }
        
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            font-size: 1.8rem;
            color: #c755fc;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, #c755fc, #c755fc);
            color: white;
            transform: scale(1.05) rotate(5deg);
        }
        
        .feature-card h3 {
            font-size: 1.25rem;
            color: #2a2a2a;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }
        
        .feature-card:hover h3 {
            color: #c755fc;
        }
        
        .feature-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .feature-link {
            display: inline-block;
            color: #c755fc;
            font-weight: 500;
            font-size: 0.9rem;
            text-decoration: none;
            position: relative;
            padding-bottom: 3px;
            transition: all 0.3s ease;
        }
        
        .feature-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #c755fc;
            transition: width 0.3s ease;
        }
        
        .feature-link:hover::after {
            width: 100%;
        }
        
        .feature-link:hover {
            color: #c755fc;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .title {
                font-size: 1.6rem;
            }
            
            .description {
                font-size: 0.95rem;
            }
            
            .feature-card {
                padding: 25px 20px;
            }
        }




 .Acontainer {
            max-width: 1200px;
            margin: 100px;
            padding: 0 1.5rem;
        }

        /* About Section */
        .about {
            padding: 5rem 0;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 4rem;
            position: relative;
        }

        /* Image container with creative effects */
        .about-image {
            flex: 1;
            position: relative;
            perspective: 1500px;
            transform-style: preserve-3d;
        }

        .about-img {
            width: 100%;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            transform: rotateY(-5deg) rotateX(5deg);
            position: relative;
            z-index: 2;
        }

        /* .about-image::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: var(--border-radius);
            top: 20px;
            left: 20px;
            z-index: 1;
            opacity: 0.8;
            transition: var(--transition);
        } */

        .about-image:hover .about-img {
            transform: perspective(1000px) rotateY(10deg) rotateX(-5deg);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
        }

        .about-image:hover::before {
            transform: translate(-10px, -10px);
        }

        /* Floating experience badge */
        .experience-badge {
            position: relative;
            bottom: 150px;
            right: -320px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--white);
            width: 140px;
            height: 140px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            box-shadow: var(--shadow-md);
            z-index: 3;
            animation: float 6s ease-in-out infinite;
            transition: var(--transition);
            overflow: hidden;
        }

        .experience-badge::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(45deg);
            animation: shine 3s linear infinite;
        }

        .experience-badge span {
            font-size: 2.5rem;
            line-height: 1;
            position: relative;
            z-index: 2;
        }

        .experience-badge p {
            font-size: 1rem;
            margin-top: 0.25rem;
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 10px;
        }

        .experience-badge:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(75, 75, 75, 0.4);
        }

        /* Text content */
        .about-text {
            flex: 1;
            position: relative;
            top: -89px;
        }

        .subtitle {
            display: inline-block;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.75rem;
            position: relative;
            padding-left: 2.5rem;
            top: 100px;
        }

        .subtitle::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 2rem;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }

        .title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .title span {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .title span::after {
            content: "";
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(67, 97, 238, 0.2);
            z-index: -1;
            border-radius: 4px;
            transition: var(--transition);
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #444;
        }

        /* Points with animations */
        .about-points {
            margin: 1.5rem 0 2.5rem;
        }

        .point {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
            padding: 0.8rem 1rem;
            background: rgba(248, 249, 250, 0.7);
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border-left: 3px solid var(--primary);
        }

        .point::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, rgba(67, 97, 238, 0.1), transparent);
            transition: var(--transition);
            z-index: 0;
        }

        .point:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-md);
        }

        .point:hover::before {
            width: 100%;
        }

        .point i {
            color: var(--primary);
            font-size: 1.3rem;
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }

        .point:hover i {
            transform: scale(1.2);
            color: var(--accent);
        }

        .point span {
            position: relative;
            z-index: 1;
            font-weight: 500;
            transition: var(--transition);
        }

        .point:hover span {
            color: var(--accent);
        }

        /* Button styling */
        .btn {
            display: inline-block;
            padding: 0.9rem 2.2rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--white);
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(110, 110, 110, 0.4);
        }

        .btn:active {
            transform: translateY(0);
        }

        .btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        /* Animations */
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        @keyframes shine {
            0% { transform: rotate(45deg) translateX(-100%); }
            100% { transform: rotate(45deg) translateX(100%); }
        }

      
        /* Responsive design */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
                gap: 3rem;
            }
            
            .about-image, .about-text {
                flex: none;
                width: 100%;
                max-width: 600px;
            }
            
            .title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .title {
                font-size: 1.8rem;
            }
            
            .experience-badge {
                width: 110px;
                height: 110px;
                right: -10px;
            }
            
            .experience-badge span {
                font-size: 2rem;
            }
            
            .experience-badge p {
                font-size: 0.85rem;
            }
        }



.Scontainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Stats Section */
        .stats {
            /* background: linear-gradient(135deg, var(--primary), var(--primary-dark)); */
            background-color: #222;
            color: var(--white);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
  
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            opacity: 0.6;
            z-index: 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 2.5rem;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .stat-card {
            padding: 2.5rem 1.5rem;
            background: #222;
            border-radius: 16px;
            transition: var(--transition);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            /* border: 1px solid rgba(255, 255, 255, 0.1); */
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
          color: var(--primary);
            z-index: -1;
            border-radius: 18px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .stat-card:hover {
            transform: translateY(-15px) scale(1.03);
            color: var(--primary);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            background:var(--primary);
            border-radius: 50%;
            font-size: 2.5rem;
            color: var(--white);
            transition: var(--transition);
            position: relative;
        }

        .stat-card:hover .stat-icon {
                 background:var(--primary);

            transform: rotateY(360deg);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
        }

        .stat-number {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(to right, #c755fc, #b02ee4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
            min-height: 70px;
        }

        .stat-number::after {
            content: '+';
            position: absolute;
            top: 0;
            right: -20px;
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.623);
        }

        .stat-card:nth-child(4) .stat-number::after {
            content: '%';
        }

        .stat-title {
            font-size: 1.2rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            opacity: 0.9;
            position: relative;
            padding-bottom: 15px;
        }

        .stat-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--secondary), var(--accent));
            border-radius: 3px;
            transition: width 0.4s ease;
        }

        .stat-card:hover .stat-title::after {
            width: 80px;
        }

        /* Section header */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 1;
        }

        .section-header h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, #222, #222);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .section-header p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.85;
            line-height: 1.7;
        }

        /* Floating elements */
        .floating {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            z-index: 0;
        }

        .float-1 {
            width: 120px;
            height: 120px;
            top: 10%;
            left: 5%;
            animation: float 8s ease-in-out infinite;
        }

        .float-2 {
            width: 80px;
            height: 80px;
            bottom: 15%;
            right: 7%;
            animation: float 10s ease-in-out infinite 1s;
        }

        .float-3 {
            width: 60px;
            height: 60px;
            top: 20%;
            right: 10%;
            animation: float 7s ease-in-out infinite 0.5s;
        }

        .float-4 {
            width: 40px;
            height: 40px;
            bottom: 25%;
            left: 12%;
            animation: float 6s ease-in-out infinite 1.5s;
        }

        /* Animations */
        @keyframes float {
            0% { transform: translateY(0) translateX(0) rotate(0deg); }
            33% { transform: translateY(-20px) translateX(15px) rotate(5deg); }
            66% { transform: translateY(15px) translateX(-15px) rotate(-5deg); }
            100% { transform: translateY(0) translateX(0) rotate(0deg); }
        }

        @keyframes countUp {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Responsive design */
        @media (max-width: 992px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .stat-number {
                font-size: 2.8rem;
            }
            
            .stat-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }
        }

    /* Courses Section */
    .courses-tabs {
      margin-top: 2rem;
    }

    .tab-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .tab-btn {
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      background-color: transparent;
      border: 1px solid var(--light-gray);
      color: var(--gray);
      font-weight: 600;
      font-family: var(--font-main);
      cursor: pointer;
      transition: var(--transition);
    }

    .tab-btn:hover, .tab-btn.active {
      background-color: var(--primary);
      color: var(--white);
      border-color: var(--primary);
    }

    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: block;
    }

    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 2rem;
    }

    .course-card {
      background-color: var(--white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      position: relative;
    }

    .course-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-md);
    }

    .course-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background-color: var(--secondary);
      color: var(--white);
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      z-index: 2;
    }

    .course-image {
      position: relative;
      overflow: hidden;
      height: 200px;
    }

    .course-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition-slow);
    }

    .course-card:hover .course-image img {
      transform: scale(1.05);
    }

    .course-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: var(--transition);
    }

    .course-card:hover .course-overlay {
      opacity: 1;
    }

    .course-content {
      padding: 1.5rem;
    }

    .course-category {
      display: inline-block;
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .course-category.development {
      background-color: rgba(108, 99, 255, 0.1);
      color: var(--primary);
    }

    .course-category.design {
      background-color: rgba(255, 101, 132, 0.1);
      color: var(--secondary);
    }

    .course-category.business {
      background-color: rgba(66, 184, 131, 0.1);
      color: var(--accent);
    }

    .course-content h3 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    .course-content h3 a:hover {
      color: var(--primary);
    }

    .course-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    .course-instructor {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .course-instructor img {
      width: 30px;
      height: 30px;
      border-radius: 50%;
    }

    .course-instructor span {
      font-size: 0.9rem;
      font-weight: 500;
    }

    .course-price {
      font-weight: 700;
      color: var(--primary);
    }

    .course-rating {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .course-rating .stars {
      color: #ffc107;
    }

    .course-rating span {
      font-size: 0.9rem;
      color: var(--gray);
    }

    .view-all {
      text-align: center;
      margin-top: 3rem;
    }



    
    /* Testimonials Section */
    .testimonial-slider {
      display: flex;
      gap: 2rem;
      overflow-x: auto;
      padding: 1rem 0;
      scroll-snap-type: x mandatory;
      scrollbar-width: none; /* Firefox */
    }

    .testimonial-slider::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
    }

    .testimonial-card {
      min-width: 350px;
      scroll-snap-align: start;
      background-color: var(--white);
      padding: 2rem;
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .testimonial-card:hover {
      box-shadow: var(--shadow-md);
    }

    .quote-icon {
      font-size: 2rem;
      color: var(--primary);
      opacity: 0.2;
      margin-bottom: 1rem;
    }

    .testimonial-text {
      font-style: italic;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .testimonial-text::before {
      content: '"';
      position: absolute;
      font-size: 4rem;
      font-family: Georgia, serif;
      color: var(--primary);
      opacity: 0.1;
      top: -20px;
      left: -10px;
      line-height: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .testimonial-author img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--primary);
      transition: var(--transition);
    }

    .testimonial-card:hover .testimonial-author img {
      transform: scale(1.1);
    }

    .author-info h4 {
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
    }

    .author-info span {
      font-size: 0.9rem;
      color: var(--gray);
    }

    /* CTA Section */
    .cta {
      background: #222;
      color: white;
      text-align: center;
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg=='); */
      opacity: 0.3;
    }

    .cta-content {
      position: relative;
      z-index: 1;
    }

    .cta .title {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: white;
    }

    .cta .title span {
      position: relative;
    }

    .cta .title span::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 8px;
      background-color: rgba(255, 255, 255, 0.3);
      bottom: 8px;
      left: 0;
      z-index: -1;
      border-radius: 4px;
    }

    .cta .description {
      max-width: 600px;
      margin: 0 auto 2rem;
      opacity: 0.9;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }

  

    .cta .btn-primary:hover {
      background-color: rgba(255, 255, 255, 0.9);
    }

    .cta .btn-outline {
      border-color: var(--white);
      color: var(--white);
    }


    /* Blog Section */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .blog-card {
      background-color: var(--white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-md);
    }

    .blog-image {
      position: relative;
      height: 220px;
      overflow: hidden;
    }

    .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition-slow);
    }

    .blog-card:hover .blog-image img {
      transform: scale(1.05);
    }

    .blog-date {
      position: absolute;
      top: 15px;
      left: 15px;
      background-color: var(--primary);
      color: var(--white);
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .blog-content {
      padding: 1.5rem;
    }

    .blog-category {
      display: inline-block;
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      background-color: var(--light-gray);
      color: var(--primary);
    }

    .blog-content h3 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    .blog-content h3 a:hover {
      color: var(--primary);
    }

    .blog-excerpt {
      color: var(--gray);
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }

    .read-more {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 600;
      color: var(--primary);
      font-size: 0.95rem;
    }

    .read-more i {
      transition: var(--transition);
    }

    .read-more:hover i {
      transform: translateX(5px);
    }

    

  /* Creative Footer Styles */
.creative-footer {
  background: white;
  color: #333;
  padding: 4rem 0 1.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #f0f0f0;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.03);
}

/* Animated background elements */
.footer-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
  background-size: 15px 15px;
  opacity: 0.3;
  z-index: 0;
  animation: dotsScroll 100s linear infinite;
}

.footer-wave {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23ffffff" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23ffffff" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"/></svg>');
  background-size: 1200px 50px;
  animation: waveAnimation 20s linear infinite;
}

@keyframes dotsScroll {
  0% { background-position: 0 0; }
  100% { background-position: 0 300px; }
}

@keyframes waveAnimation {
  0% { background-position-x: 0; }
  100% { background-position-x: 1200px; }
}

.Fcontainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Brand Section */
.footer-brand {
  position: relative;
}

#animated-logo {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

#animated-logo i {
  margin-right: 0.75rem;
  color: #b02ee4;
  font-size: 2.2rem;
  transition: all 0.5s ease;
}

#animated-logo:hover {
  transform: translateY(-3px);
  text-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

#animated-logo:hover i {
  transform: rotate(15deg) scale(1.1);
  color: #9b59b6;
}

.footer-motto {
  color: #7f8c8d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1rem;
}

.footer-motto::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(to bottom, #b02ee4, #9b59b6);
}

.newsletter {
  margin-top: 2rem;
}

.newsletter h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #222;
}

.newsletter-form {
  display: flex;
  position: relative;
}

.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 30px 0 0 30px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #b02ee4;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.subscribe-btn {
  padding: 0 1.5rem;
  background: linear-gradient(135deg, #b02ee4, #b600ce);
  color: white;
  border: none;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.subscribe-btn i {
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background: linear-gradient(135deg, #b02ee4, #c755fc);
  transform: translateX(5px);
}

.subscribe-btn:hover i {
  transform: translateX(3px);
}

/* Links Section */
.links-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.links-column {
  position: relative;
}

.links-heading {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  position: relative;
  display: inline-block;
}

.links-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #b02ee4, #b600ce);

  border-radius: 3px;
}

.links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-column ul li {
  margin-bottom: 0.8rem;
}

.links-column ul li a {
  color: #7f8c8d;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.link-icon {
  margin-right: 0.5rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  color: #b02ee4;
}

.links-column ul li a:hover {
  color: #b02ee4;
  transform: translateX(5px);
}

.links-column ul li a:hover .link-icon {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #7f8c8d;
  transition: all 0.3s ease;
}

.social-tooltip {
  position: absolute;
  top: -40px;
  background: #222;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.social-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #444444;
}

.social-btn:hover {
  background: linear-gradient(135deg, #b02ee4, #b600ce);

  color: white;
  transform: translateY(-5px);
}

.social-btn:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  color: #95a5a6;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.legal-links a:hover {
  color: #9b59b6;
}

.copyright {
  color: #95a5a6;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 0.5rem;
}


@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .links-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .links-section {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: 30px;
    margin-bottom: 0.5rem;
  }
  
  .subscribe-btn {
    border-radius: 30px;
    justify-content: center;
  }
}
    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      box-shadow: var(--shadow-md);
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 999;
    }

    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      transform: translateY(-5px) scale(1.1);
    }

    /* Animations */
    @keyframes floating {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }

    @keyframes float {
      0% { transform: translateY(0px) translateX(0px); }
      50% { transform: translateY(-20px) translateX(10px); }
      100% { transform: translateY(0px) translateX(0px); }
    }

    @keyframes float-particle {
      0% { transform: translateY(0px) translateX(0px); }
      25% { transform: translateY(-40px) translateX(20px); }
      50% { transform: translateY(0px) translateX(40px); }
      75% { transform: translateY(40px) translateX(20px); }
      100% { transform: translateY(0px) translateX(0px); }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* ======================
       Enhanced Responsive Styles
       ====================== */

    @media (max-width: 1200px) {
      .container {
        max-width: 100%;
        padding: 0 2rem;
      }
      
      .hero .title {
        font-size: 3rem;
      }
      
      .section-header .title {
        font-size: 2.25rem;
      }
    }

    @media (max-width: 992px) {
      /* General Layout */
      section {
        padding: 4rem 0;
      }
      
      /* Hero Section */
      .hero {
        padding: 8rem 0 4rem;
      }
      
      .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
      }
      
      .hero-text, 
      .hero-image {
        flex: none;
        width: 100%;
      }
      
      .hero .description {
        margin: 0 auto 2rem;
      }
      
      .hero-buttons {
        justify-content: center;
      }
      
      .hero-badge {
        left: 50%;
        transform: translateX(-50%);
      }
      
      /* About Section */
      .about-content {
        flex-direction: column;
        gap: 3rem;
      }
      
      .about-image,
      .about-text {
        flex: none;
        width: 100%;
      }
      
      .experience-badge {
        right: 0;
        bottom: -30px;
      }
      
      /* Newsletter */
      .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
      }
      
      .newsletter-form {
        max-width: 100%;
      }
      
      /* Stats */
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      /* General Styles */
      html {
        font-size: 15px;
      }
      
      section {
        padding: 3rem 0;
      }
      
      .container {
        padding: 0 1.5rem;
      }
      
      .section-header .title {
        font-size: 2rem;
      }
      
      /* Navbar */
      .menu-toggle {
        display: flex;
      }
      
      .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: var(--transition-slow);
        z-index: 1000;
      }
      
      .nav-list.active {
        right: 0;
      }
      
      .nav-item {
        width: 100%;
      }
      
      .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        display: block;
        width: 100%;
      }
      
      .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        background: transparent;
        display: none;
        width: 100%;
      }
      
      .dropdown-menu li a {
        padding: 0.5rem 0 0.5rem 1rem;
      }
      
      .dropdown:hover .dropdown-menu,
      .dropdown.active .dropdown-menu {
        display: block;
      }
      
      /* Hero */
      .hero .title {
        font-size: 2.5rem;
      }
      
      /* Features */
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      /* Courses & Blog */
      .courses-grid,
      .blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      /* Testimonials */
      .testimonial-card {
        min-width: 300px;
      }
      
      /* CTA */
      .cta {
        padding: 4rem 0;
      }
      
      .cta .title {
        font-size: 2rem;
      }
      
      .cta-buttons {
        flex-direction: column;
        gap: 1rem;
      }
      
      .cta .btn {
        width: 100%;
      }
      
      /* Footer */
      .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
      }
      
      .footer-links {
        justify-content: center;
      }
    }

    @media (max-width: 576px) {
      /* Extra Small Devices */
      html {
        font-size: 14px;
      }
      
      .container {
        padding: 0 1rem;
      }
      
      /* Hero */
      .hero {
        padding: 6rem 0 3rem;
      }
      
      .hero .title {
        font-size: 2rem;
        line-height: 1.3;
      }
      
      .hero-buttons {
        flex-direction: column;
      }
      
      .hero-buttons .btn {
        width: 100%;
      }
      
      /* Sections */
      .section-header .title {
        font-size: 1.75rem;
      }
      
      /* Features */
      .features-grid {
        grid-template-columns: 1fr;
      }
      
      /* Courses & Blog */
      .courses-grid,
      .blog-grid {
        grid-template-columns: 1fr;
      }
      
      /* Stats */
      .stats-grid {
        grid-template-columns: 1fr;
      }
      
      /* Testimonials */
      .testimonial-card {
        min-width: 260px;
      }
      
      /* Tabs */
      .tab-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .tab-btn {
        width: 100%;
        text-align: center;
      }
      
      /* Forms */
      .newsletter-form {
        flex-direction: column;
      }
      
      .newsletter-form input,
      .newsletter-form button {
        width: 100%;
      }
    }

    @media (max-width: 400px) {
      /* Tiny Devices */
      .hero .title {
        font-size: 1.8rem;
        
      }
      
      .section-header .title {
        font-size: 1.5rem;
      }
      
      .btn {
        padding: 0.6rem 1.5rem;
      }
      
      .btn-lg {
        padding: 0.8rem 1.75rem;
      }
    }

    /* Advanced Header Animation */
    @keyframes headerSlideDown {
      from {
        transform: translateY(-100%);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* Course Card Hover Effect */
    .course-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(255, 101, 132, 0.1));
      opacity: 0;
      transition: var(--transition);
      z-index: -1;
    }

    .course-card:hover::before {
      opacity: 1;
    }

    /* Feature Card Hover Effect */
    .feature-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(108, 99, 255, 0.05) 0%, transparent 70%);
      opacity: 0;
      transition: var(--transition);
      z-index: -1;
    }

    .feature-card:hover::after {
      opacity: 1;
    }

    /* Button Hover Effect */
    .btn-primary::after,
    .btn-outline::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
      border-radius: 50px;
      opacity: 0;
      transition: var(--transition);
    }

    .btn-primary:hover::after,
    .btn-outline:hover::after {
      opacity: 1;
    }

    /* Logo Animation */
    .logo img {
      animation: logoPulse 4s infinite;
    }

    @keyframes logoPulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Testimonial Card Hover Effect */
    .testimonial-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--transition-slow);
    }

    .testimonial-card:hover::after {
      transform: scaleX(1);
    }







        .subtitle {
            font-size: 1.2rem;
            color: #d4d4d4;
            max-width: 600px;
            line-height: 1.6;
            text-align: center;
            margin-bottom: 130px;
        }
        
        .ccontainer {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            perspective: 1000px;
            margin-top: 89px;
        }
        
        .code-card {
            position: absolute;
            width: 680px;
            height: 580px;
            background: #1e1e1e;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 
                        0 0 0 1px rgba(255, 255, 255, 0.05),
                        inset 0 0 20px rgba(0, 0, 0, 0.8);
            padding: 0;
            transform: rotate(5deg);
            animation: scrollCard 20s linear infinite;
            overflow: hidden;
            z-index: 1;
        }
        
        @keyframes scrollCard {
            0% {
                transform: rotate(5deg) translateY(100vh);
            }
            10% {
                transform: rotate(5deg) translateY(0);
            }
            90% {
                transform: rotate(5deg) translateY(0);
                opacity: 1;
            }
            100% {
                transform: rotate(5deg) translateY(-100vh);
                opacity: 0;
            }
        }
        
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: #252526;
            border-bottom: 1px solid #3c3c3c;
        }
        
        .language {
            font-size: 16px;
            font-weight: 500;
            color: #d7ba7d;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .window-controls {
            display: flex;
            gap: 8px;
        }
        
        .window-btn {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            cursor: pointer;
        }
        
        .close-btn { background: #ff5f57; }
        .minimize-btn { background: #ffbd2e; }
        .maximize-btn { background: #28c940; }
        
        .code-display {
            height: calc(100% - 50px);
            overflow-y: auto;
            color: #d4d4d4;
            font-size: 16px;
            line-height: 1.8;
            position: relative;
            padding: 20px;
            background: #1e1e1e;
        }
        
        .code-line {
            margin: 0;
            white-space: pre;
            position: relative;
            min-height: 24px;
            font-weight: 400;
        }
        
        .line-number {
            display: inline-block;
            width: 40px;
            text-align: right;
            color: #858585;
            margin-right: 20px;
            user-select: none;
        }
        
        .cursor {
            display: inline-block;
            width: 8px;
            height: 18px;
            background-color: #d4d4d4;
            margin-left: 3px;
            animation: blink 1s step-end infinite;
            vertical-align: middle;
        }
        
        @keyframes blink {
            from, to { background-color: transparent }
            50% { background-color: #d4d4d4; }
        }
        
        /* VS Code-like Syntax Highlighting */
        /* .keyword { color: #c755fc; font-weight: 600; }
        .function { color: #dcdcaa; }
        .string { color: #ce9178; }
        .comment { color: #6a9955; font-style: italic; }
        .number { color: #b5cea8; }
        .operator { color: #d4d4d4; }
        .type { color: #4ec9b0; }
        .variable { color: #9cdcfe; }
        .constant { color: #4fc1ff; }
        .class { color: #4ec9b0; }
        .param { color: #9cdcfe; }
        .builtin { color: #dcdcaa; }
        .template { color: #d16969; }
        .tag { color: #569cd6; }
        .attr { color: #9cdcfe; }
        .value { color: #ce9178; }
        .regex { color: #d16969; }
        .module { color: #c586c0; }
        .decorator { color: #dcdcaa; }
        .import { color: #c586c0; }
        .this { color: #d7ba7d; } */
        
        /* Scrollbar styling */
        .code-display::-webkit-scrollbar {
            width: 10px;
        }
        
        .code-display::-webkit-scrollbar-track {
            background: #1e1e1e;
        }
        
        .code-display::-webkit-scrollbar-thumb {
            background: #3c3c3c;
            border-radius: 5px;
        }
        
        .code-display::-webkit-scrollbar-thumb:hover {
            background: #4a4a4a;
        }
        /* ======================
   Enhanced Responsive Styles
   ====================== */

/* Tablet and Small Desktop (768px - 1024px) */
@media (max-width: 1024px) {
    /* Hero Section */
    .hero {
        padding: 8rem 0 4rem;
        margin-left: 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        margin-top: 0;
    }
    
    .hero .title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Code Card */
    .ccontainer {
        height: 400px;
        margin-top: 50px;
    }
    
    .code-card {
        width: 90%;
        height: 350px;
        max-width: 600px;
    }
    
    /* Features Section */
    .features-container {
        margin-top: 50px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        margin-left: 0;
        padding: 25px 20px;
    }
    
    /* About Section */
    .Acontainer {
        margin: 50px auto;
        padding: 0 2rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-text {
        top: 0;
        text-align: center;
    }
    
    .experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 2rem auto;
        width: 120px;
        height: 120px;
    }
    
    .experience-badge span {
        font-size: 2rem;
    }
    
    .subtitle {
        top: 0;
        padding-left: 0;
    }
    
    .subtitle::before {
        display: none;
    }
    
    .about-points {
        text-align: left;
    }
    
    /* Stats Section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1rem;
    }
    
    /* Courses Section */
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        min-width: 300px;
    }
    
    /* CTA Section */
    .cta {
        padding: 4rem 0;
    }
    
    .cta .title {
        font-size: 2rem;
    }
    
    /* Blog Section */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .links-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices (576px - 768px) */
@media (max-width: 768px) {
    /* General */
    section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 7rem 0 3rem;
    }
    
    .hero .title {
        font-size: 2.2rem;
    }
    
    .hero .description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin-bottom: 1rem;
    }
    
    /* Code Card */
    .ccontainer {
        height: 350px;
        margin-top: 30px;
    }
    
    .code-card {
        height: 300px;
    }
    
    .code-display {
        font-size: 14px;
    }
    
    /* Features Section */
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-text .title {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .point {
        padding: 0.6rem 0.8rem;
    }
    
    /* Stats Section */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.8rem;
        min-height: 60px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    /* Courses Section */
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tab-btn {
        margin-bottom: 0.5rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        min-width: 280px;
        padding: 1.5rem;
    }
    
    /* CTA Section */
    .cta .title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta .btn {
        width: 100%;
        max-width: 280px;
        margin-bottom: 1rem;
    }
    
    /* Blog Section */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .links-section {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 0.5rem;
    }
    
    .subscribe-btn {
        border-radius: 30px;
        justify-content: center;
    }
}

/* Small Mobile Devices (up to 576px) */
@media (max-width: 576px) {
    /* General */
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-header .title {
        font-size: 1.8rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 6rem 0 2rem;
    }
    
    .hero .title {
        font-size: 1.8rem;
    }
    
    .hero .description {
        font-size: 0.95rem;
    }
    
    /* Code Card */
    .ccontainer {
        height: 300px;
        margin-top: 20px;
    }
    
    .code-card {
        height: 250px;
    }
    
    .code-display {
        font-size: 12px;
        padding: 15px;
    }
    
    .line-number {
        width: 30px;
        margin-right: 15px;
    }
    
    /* Features Section */
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* About Section */
    .about-text .title {
        font-size: 1.6rem;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .experience-badge span {
        font-size: 1.8rem;
    }
    
    .experience-badge p {
        font-size: 0.8rem;
    }
    
    /* Stats Section */
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Courses Section */
    .course-card {
        margin-bottom: 1rem;
    }
    
    .course-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Testimonials */
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    /* CTA Section */
    .cta {
        padding: 3rem 0;
    }
    
    .cta .title {
        font-size: 1.6rem;
    }
    
    /* Blog Section */
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    /* Footer */
    .footer-bottom {
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Extra Small Devices (up to 400px) */
@media (max-width: 400px) {
    /* Hero Section */
    .hero .title {
        font-size: 1.6rem;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Code Card */
    .code-display {
        font-size: 11px;
    }
    
    /* About Section */
    .about-text .title {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
    
    /* Stats Section */
    .stat-number {
        font-size: 2.2rem;
    }
    
    /* General */
    .section-header .title {
        font-size: 1.6rem;
    }
}

/* Navigation Specific Responsive Styles */
@media (max-width: 800px) {
    /* Hide desktop nav links */
    .nav-links {
        display: none;
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }

    .navbar.scrolled {
        margin: 1rem;
        width: calc(100% - 2rem);
        padding: 0.8rem 3%;
    }

    .nav-actions {
        gap: 1rem;
    }
    
    .profile span {
        display: none;
    }
    
    .profile {
        padding: 0.4rem;
    }
    
    .search-bar {
        width: 250px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Adjust dropdown positioning */
    .dropdown-content {
        left: 50%;
        transform: translateX(-50%);
        min-width: 300px;
    }
    
    .profile-dropdown {
        right: 50%;
        transform: translateX(50%);
    }
}

/* Fix for very small screens */
@media (max-width: 350px) {
    .navbar {
        padding: 0.8rem 3%;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .cta-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero .title {
        font-size: 1.4rem;
    }
    
    .section-header .title {
        font-size: 1.4rem;
    }
}