 
:root {
    --primary-color: #8B5CF6;
    --secondary-color: #1F1F1F;
    --card-bg: #1A1A1A;
    --text-color: #FFFFFF;
    --text-muted: #9CA3AF;
    --background: #000000;
    --border-color: rgba(139, 92, 246, 0.2);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background);
    color: var(--text-color);
    line-height: 1.6;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    max-width: 100%;
    height: auto;
	pointer-events: none;
    -webkit-user-drag: none;  
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .section-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: rgba(139, 92, 246, 0.9);
    box-shadow: 0 0 0 2px var(--primary-color), 0 0 0 4px rgba(0, 0, 0, 0.5);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
  
  .btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  .btn-outline-small {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .btn-outline-small:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  .btn-full {
    width: 100%;
  }
  
  /* Card */
  .card {
    background-color: var(--card-bg);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
  }
  
  .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .card-description {
    color: var(--text-muted);
    font-size: 0.875rem;
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  
  .navbar.sticky {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-content {
    display: flex;
    justify-content:  end;
    align-items: center;
    height: 4rem;
  }
  
  .logo {
    display: block;
  }
  
  .logo-svg {
    width: 12rem;
    height: auto;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-link {
    margin-left: 2rem;
    transition: color 0.3s ease;
  }
  .nav-links { gap: 10px; }

  .nav-link:hover {
    color: var(--primary-color);
  }
  
  .menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 0;
  }
  
  .mobile-menu.active {
    display: flex;
  }
  
  .mobile-menu .nav-link {
    margin: 0.5rem 0;
    padding: 0.5rem 0;
  }
  
  .mobile-btn {
    margin-top: 1rem;
    width: 100%;
  }
  
  /* Hero Section */
  .hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-title .highlight {
    display: block;
    color: var(--primary-color);
    margin-top: 0.5rem;
  }
  
  .hero-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .hero-image {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero-image img {
    width: 100%;
    height: 125%;
    object-fit: cover;
    border-radius: 1rem;
	 pointer-events: none;
    -webkit-user-drag: none;
  }
  
  /* Stats */
  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
  }
  
  /* Services Section */
  .services {
    padding: 4rem 0;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    transition: border-color 0.3s ease;
  }
  
  .service-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
  }
  
  .service-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  /* Projects Section */
  .projects {
    padding: 4rem 0;
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .project-card {
    overflow: hidden;
  }
  
  .project-image {
    position: relative;
    height: 12rem;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 0.5rem;
  }
  
  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .project-card:hover .project-image img {
    transform: scale(1.1);
  }
  
  .project-card:hover .card-title {
    color: var(--primary-color);
  }
  
  .project-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  /* Skills Section */
  .skills {
    padding: 4rem 0;
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
  }
  
  .skill-name {
    font-weight: 500;
  }
  
  .skill-percentage {
    color: var(--text-muted);
    font-size: 0.875rem;
  }
  
  .skill-bar {
    height: 0.5rem;
    background-color: var(--card-bg);
    border-radius: 9999px;
  }
  
  .skill-progress {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 9999px;
    transition: width 0.5s ease-in-out;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 4rem 0;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-quote {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .testimonial-content {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .author-image {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .author-name {
    font-weight: 600;
  }
  
  .author-position {
    font-size: 0.875rem;
    color: var(--text-muted);
  }
  
  /* Contact Section */
  .contact {
    padding: 4rem 0;
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
  }
  
  .contact-title {
    font-weight: 600;
  }
  
  .contact-value {
    color: var(--text-muted);
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-input, .form-textarea {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: var(--text-color);
    width: 100%;
  }
  
  .form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
  }
  
  /* Footer */
  .footer {
    background-color: var(--card-bg);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .footer-description {
    color: var(--text-muted);
  }
  
  .footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
  }
  
  .footer-links a:hover {
    color: var(--primary-color);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
  }
  
  /* Media Queries */
  @media (min-width: 768px) {
    .nav-links {
      display: flex;
      align-items: center;
    }
    
    .menu-toggle {
      display: none;
    }
    
    .hero-content {
      grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
      font-size: 3.5rem;
    }
    
    .stats {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .skills-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
      grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
      grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .projects-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .skills-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero-content, .section-header, .services-grid, .projects-grid, 
  .skills-grid, .testimonials-grid, .contact-content {
    animation: fadeIn 0.8s ease-out forwards;
  }