 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');
  
  :root {
    --primary-purple: #9b5cff59;
    --accent-purple: #7C3AED;
    --light-purple: #C77DFF;
    --dark-bg: #0B0B14;
    --darker-bg: #06060C;
    --card-bg: rgba(155, 92, 255, 0.05);
    --border-color: rgba(155, 92, 255, 0.2);
    --text-primary: #FFFFFF;
    --text-secondary: #B4B4B8;
  }
  
  * {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: var(--dark-bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
  }
  
  /* Animated gradient background */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 50%, rgba(155, 92, 255, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 40% 20%, rgba(199, 125, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: gradientShift 15s ease infinite;
  }
  
  @keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
  }
  
  /* Gradient text */
  .gradient-text {
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
  }
  
  /* Glass morphism cards */
  .glass-card {
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .glass-card:hover {
    transform: translateY(-8px) scale(1);
    box-shadow: 0 20px 60px rgba(155, 92, 255, 0.3);
    border-color: var(--primary-purple);
  }
  
  /* Navigation */
  nav {
    background: rgba(11, 11, 20, 0.8);
    backdrop-filter: blur(20px);
  }
  
  .nav-link {
    position: relative;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
  }
  
  .nav-link:hover {
    color: var(--primary-purple);
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  /* Hero section */
  .hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  
  /* Buttons */
  .btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  .btn-primary::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: left 0.5s;
  }
  
  .btn-primary:hover::before {
    left: 100%;
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(155, 92, 255, 0.4);
  }
  
  .btn-secondary {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
  }
  
  /* Profile image */
  .profile-container {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }
  
  .profile-container::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    border-radius: 50%;
    animation: rotate 3s linear infinite;
    z-index: -1;
  }
  
  @keyframes rotate {
    100% { transform: rotate(360deg); }
  }
  
  /* Skill bars */
  .skill-bar {
    height: 10px;
    background: rgba(155, 92, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  
  .skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--light-purple));
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(155, 92, 255, 0.5);
  }
  
  /* Icon styling */
  .icon-container {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(155, 92, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .glass-card:hover .icon-container {
    background: var(--primary-purple);
    transform: scale(1.1) rotate(5deg);
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  .animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
  }
  
  .animate-float {
    animation: float 3s ease-in-out infinite;
  }
  
  .section-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .section-reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Certification slider */
  .cert-slider {
    position: relative;
  }
  
  .dot {
    transition: all 0.3s ease;
  }
  
  .dot.active {
    width: 32px;
    border-radius: 8px;
    background: var(--primary-purple);
  }
  
  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--darker-bg);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--light-purple);
  }
  
  /* Section titles */
  .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
  }

  
  /* Contact section icons */
  .contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(155, 92, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

/*social media icons*/
.social-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .social-link {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #a78bfa;
            text-decoration: none;
            transition: all 0.3s ease;
            background: #2d2d44;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(167, 139, 250, 0.1);
            border-radius: 15px;
            transform: scale(0);
            transition: transform 0.3s ease;
        }

        .social-link:hover::before {
            transform: scale(1);
        }

        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 25px rgba(167, 139, 250, 0.3);
            background: #353552;
        }

        .social-link i {
            z-index: 1;
        }

  
  .contact-icon:hover {
    background: var(--primary-purple);
    transform: scale(1.1);

  }
