/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
:root {
    --primary-color: #6e57e0;
    --secondary-color: #ff6b6b;
    --accent-color: #00d9ff;
    --dark-color: #0f172a;
    --darker-color: #080d1a;
    --light-color: #f8f9fa;
    --text-color: #d0d0d0;
    --gradient-primary: linear-gradient(45deg, #6e57e0, #c961de);
    --gradient-secondary: linear-gradient(45deg, #ff6b6b, #ffa26b);
    --gradient-accent: linear-gradient(45deg, #00d9ff, #00a1ff);
    --gradient-dark: linear-gradient(45deg, #0f172a, #1e293b);
    --gradient-darker: linear-gradient(45deg, #080d1a, #0f172a);
    --font-primary: "Space Grotesk", sans-serif;
    --font-secondary: "Poppins", sans-serif;
    --transition: all 0.3s ease;
    --glow-color: rgba(110, 87, 224, 0.6);
    --glow-accent: rgba(0, 217, 255, 0.6);
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-secondary);
    background-color: var(--darker-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-primary);
    color: white;
    font-weight: 700;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--secondary-color);
    text-decoration: none;
  }
  
  .section-padding {
    padding: 100px 0;
  }
  
  .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }
  
  .text-gradient-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }
  
  .bg-gradient {
    background: var(--gradient-dark);
  }
  
  /*--------------------------------------------------------------
  # Custom Cursor
  --------------------------------------------------------------*/
  .cursor-dot,
  .cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    transition: opacity 0.3s ease;
  }
  
  .cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    box-shadow: 0 0 10px var(--glow-accent);
  }
  
  .cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
    transition: all 0.2s ease-out;
    box-shadow: 0 0 15px var(--glow-accent);
  }
  
  @media (max-width: 768px) {
    .cursor-dot,
    .cursor-outline {
      display: none;
    }
  }
  
  /*--------------------------------------------------------------
  # Particles Background
  --------------------------------------------------------------*/
  #particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  /*--------------------------------------------------------------
  # Background Effects
  --------------------------------------------------------------*/
  .bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image: linear-gradient(to right, rgba(110, 87, 224, 0.03) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(110, 87, 224, 0.03) 1px, transparent 1px);
    z-index: -2;
  }
  
  .bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(110, 87, 224, 0.08) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: -3;
    opacity: 0.7;
  }
  
  .bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGQ9Ik0wIDBoMzAwdjMwMEgweiIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIuMDUiLz48L3N2Zz4=");
    z-index: -4;
  }
  
  .floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -5;
  }
  
  .shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(110, 87, 224, 0.05), rgba(0, 217, 255, 0.05));
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
  }
  
  .shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
  }
  
  .shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
  }
  
  .shape:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
  }
  
  .shape:nth-child(4) {
    width: 250px;
    height: 250px;
    top: 30%;
    left: 60%;
    animation-delay: 6s;
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0) translateX(0);
    }
    25% {
      transform: translateY(-20px) translateX(10px);
    }
    50% {
      transform: translateY(0) translateX(20px);
    }
    75% {
      transform: translateY(20px) translateX(10px);
    }
  }
  
  /*--------------------------------------------------------------
  # Navbar
  --------------------------------------------------------------*/
  .navbar {
    padding: 20px 0;
    transition: var(--transition);
    z-index: 100;
  }
  
  .navbar.scrolled {
    background-color: rgba(8, 13, 26, 0.9);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(110, 87, 224, 0.1);
  }
  
  .navbar-brand {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
    position: relative;
  }
  
  .glitch-text {
    position: relative;
    display: inline-block;
  }
  
  .glitch-text::before,
  .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent-color);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
  }
  
  .glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 var(--primary-color);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
  }
  
  @keyframes glitch-anim-1 {
    0% {
      clip: rect(24px, 550px, 90px, 0);
    }
    20% {
      clip: rect(62px, 550px, 130px, 0);
    }
    40% {
      clip: rect(58px, 550px, 71px, 0);
    }
    60% {
      clip: rect(40px, 550px, 89px, 0);
    }
    80% {
      clip: rect(66px, 550px, 118px, 0);
    }
    100% {
      clip: rect(19px, 550px, 145px, 0);
    }
  }
  
  @keyframes glitch-anim-2 {
    0% {
      clip: rect(85px, 550px, 140px, 0);
    }
    20% {
      clip: rect(14px, 550px, 35px, 0);
    }
    40% {
      clip: rect(64px, 550px, 115px, 0);
    }
    60% {
      clip: rect(55px, 550px, 65px, 0);
    }
    80% {
      clip: rect(10px, 550px, 85px, 0);
    }
    100% {
      clip: rect(95px, 550px, 110px, 0);
    }
  }
  
  .nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 10px;
    padding: 8px 0;
    position: relative;
  }
  
  .nav-link:hover {
    color: white !important;
  }
  
  .hover-underline-animation {
    position: relative;
  }
  
  .hover-underline-animation::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-accent);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
  }
  
  .hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  .hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 217, 255, 0.05) 0%, rgba(8, 13, 26, 0.8) 70%);
    z-index: -1;
  }
  
  .hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
  }
  
  .hero-title {
    font-size: 5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  
  .glitch {
    position: relative;
    color: white;
    font-weight: 800;
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75), -0.025em -0.05em 0 rgba(0, 255, 0, 0.75), 0.025em 0.05em 0
      rgba(0, 0, 255, 0.75);
    animation: glitch 2s infinite;
  }
  
  .glitch span {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .glitch span:first-child {
    animation: glitch 650ms infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(-0.025em, -0.0125em);
    opacity: 0.8;
  }
  
  .glitch span:last-child {
    animation: glitch 375ms infinite;
    clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0 100%);
    transform: translate(0.0125em, 0.025em);
    opacity: 0.8;
  }
  
  @keyframes glitch {
    0% {
      text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75), -0.025em -0.05em 0 rgba(0, 255, 0, 0.75), 0.025em 0.05em 0
        rgba(0, 0, 255, 0.75);
    }
    14% {
      text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75), -0.025em -0.05em 0 rgba(0, 255, 0, 0.75), 0.025em 0.05em 0
        rgba(0, 0, 255, 0.75);
    }
    15% {
      text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75), 0.025em 0.025em 0 rgba(0, 255, 0, 0.75), -0.05em -0.05em 0
        rgba(0, 0, 255, 0.75);
    }
    49% {
      text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75), 0.025em 0.025em 0 rgba(0, 255, 0, 0.75), -0.05em -0.05em 0
        rgba(0, 0, 255, 0.75);
    }
    50% {
      text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75), 0.05em 0 0 rgba(0, 255, 0, 0.75), 0 -0.05em 0
        rgba(0, 0, 255, 0.75);
    }
    99% {
      text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75), 0.05em 0 0 rgba(0, 255, 0, 0.75), 0 -0.05em 0
        rgba(0, 0, 255, 0.75);
    }
    100% {
      text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75), -0.025em -0.025em 0 rgba(0, 255, 0, 0.75), -0.025em -0.05em 0
        rgba(0, 0, 255, 0.75);
    }
  }
  
  .glitch-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
  }
  
  .typing-container {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .hero-cta {
    margin-top: 30px;
    position: relative;
    z-index: 2;
  }
  
  .btn-glow {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 15px var(--glow-color);
  }
  
  .btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--glow-color);
  }
  
  .btn-glow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
  }
  
  .btn-glow:hover::before {
    opacity: 1;
  }
  
  .btn-glow-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: white;
    margin-left: 15px;
    box-shadow: 0 0 15px var(--glow-accent);
  }
  
  .btn-glow-secondary:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px var(--glow-accent);
  }
  
  /* Scroll Indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
  }
  
  .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 0 10px var(--glow-accent);
  }
  
  .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 2px;
    margin-top: 10px;
    animation: scroll 1.5s infinite;
    box-shadow: 0 0 5px var(--glow-accent);
  }
  
  @keyframes scroll {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(15px);
      opacity: 0;
    }
  }
  
  .scroll-arrow {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
  }
  
  .scroll-arrow span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 10px;
    height: 10px;
    margin-left: -5px;
    border-left: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    transform: rotate(-45deg);
    animation: scrollDown 2s infinite;
    opacity: 0;
    box-shadow: 0 0 5px var(--glow-accent);
  }
  
  .scroll-arrow span:nth-of-type(1) {
    animation-delay: 0s;
  }
  
  .scroll-arrow span:nth-of-type(2) {
    top: 10px;
    animation-delay: 0.15s;
  }
  
  @keyframes scrollDown {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  /* Hero Background Elements */
  .hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
  }
  
  .hero-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .hero-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(110, 87, 224, 0.1), rgba(0, 217, 255, 0.1), transparent);
    height: 1px;
    width: 100%;
    animation: moveLine 8s infinite linear;
  }
  
  .hero-line:nth-child(1) {
    top: 20%;
    animation-delay: 0s;
  }
  
  .hero-line:nth-child(2) {
    top: 40%;
    animation-delay: 2s;
  }
  
  .hero-line:nth-child(3) {
    top: 60%;
    animation-delay: 4s;
  }
  
  .hero-line:nth-child(4) {
    top: 80%;
    animation-delay: 6s;
  }
  
  @keyframes moveLine {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  
  .hero-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .hero-dot {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: rgba(110, 87, 224, 0.5);
    border-radius: 50%;
    animation: floatDot 10s infinite ease-in-out;
  }
  
  @keyframes floatDot {
    0%,
    100% {
      transform: translateY(0) translateX(0);
    }
    25% {
      transform: translateY(-20px) translateX(10px);
    }
    50% {
      transform: translateY(0) translateX(20px);
    }
    75% {
      transform: translateY(20px) translateX(10px);
    }
  }
  
  /* Digital Rain Effect */
  .digital-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
  }
  
  .rain-column {
    position: absolute;
    top: -100px;
    color: rgba(0, 217, 255, 0.15);
    font-family: monospace;
    font-size: 1.2rem;
    text-align: center;
    white-space: nowrap;
    filter: blur(1px);
    pointer-events: none;
    animation: rain-fall linear infinite;
  }
  
  @keyframes rain-fall {
    0% {
      transform: translateY(-100%);
      opacity: 1;
    }
    85% {
      opacity: 0.8;
    }
    100% {
      transform: translateY(100vh);
      opacity: 0;
    }
  }
  
  /*--------------------------------------------------------------
  # Section Title
  --------------------------------------------------------------*/
  .section-title {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  
  .underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    position: relative;
  }
  
  .underline::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--gradient-accent);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: underline-anim 2s infinite;
  }
  
  @keyframes underline-anim {
    0% {
      left: 0;
      transform: translateX(0);
    }
    50% {
      left: 100%;
      transform: translateX(-100%);
    }
    100% {
      left: 0;
      transform: translateX(0);
    }
  }
  
  /*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
  .about-text {
    padding: 30px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 1px solid rgba(110, 87, 224, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .about-text::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.03) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: -1;
    animation: rotate 20s linear infinite;
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .about-text p {
    margin-bottom: 20px;
  }
  
  .social-icons {
    margin-top: 30px;
  }
  
  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(110, 87, 224, 0.3);
  }
  
  .social-icon:hover {
    transform: translateY(-5px);
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
  }
  
  .about-card {
    perspective: 1000px;
    height: 400px;
  }
  
  .card-3d-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s;
  }
  
  .about-card:hover .card-3d-wrapper {
    transform: rotateY(180deg);
  }
  
  .card-front,
  .card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .card-front {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card-back {
    background: var(--gradient-accent);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card-content {
    padding: 30px;
    text-align: center;
    color: white;
  }
  
  .card-content h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  
  .about-list {
    list-style: none;
    padding: 0;
    text-align: left;
  }
  
  .about-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
  }
  
  .about-list li i {
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  /*--------------------------------------------------------------
  # Education Section
  --------------------------------------------------------------*/
  .education-card {
    background: rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.5s ease;
    border: 1px solid rgba(110, 87, 224, 0.2);
    position: relative;
  }
  
  .education-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.03) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: -1;
    animation: rotate 20s linear infinite;
  }
  
  .education-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(110, 87, 224, 0.3);
    border-color: var(--accent-color);
  }
  
  .education-logo {
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: center;
    background: rgba(8, 13, 26, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .education-logo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
  }
  
  @keyframes shimmer {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  
  .education-logo img {
    max-width: 150px;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
  }
  
  .education-content {
    padding: 30px;
    text-align: center;
  }
  
  .education-degree {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
  }
  
  .education-date {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(110, 87, 224, 0.3);
  }
  
  .education-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }
  
  .education-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(110, 87, 224, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(110, 87, 224, 0.1);
  }
  
  .education-detail-item:hover {
    background: rgba(0, 217, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(0, 217, 255, 0.2);
  }
  
  .education-detail-item i {
    color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Experience Section
  --------------------------------------------------------------*/
  .experience-timeline {
    position: relative;
    padding-left: 50px;
  }
  
  .experience-timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
  }
  
  .experience-item {
    position: relative;
    margin-bottom: 50px;
  }
  
  .experience-item:last-child {
    margin-bottom: 0;
  }
  
  .experience-item::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 4px solid rgba(0, 217, 255, 0.3);
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
  }
  
  .experience-content {
    background: rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(110, 87, 224, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .experience-content::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.03) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: -1;
    animation: rotate 20s linear infinite;
  }
  
  .experience-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 217, 255, 0.2);
  }
  
  .experience-time {
    margin-bottom: 15px;
  }
  
  .experience-time .date {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
  }
  
  .experience-info h3 {
    margin-bottom: 5px;
    color: white;
    font-size: 1.5rem;
  }
  
  .experience-info h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
  }
  
  .experience-info ul {
    padding-left: 20px;
  }
  
  .experience-info ul li {
    margin-bottom: 10px;
    position: relative;
  }
  
  .experience-info ul li::before {
    content: "→";
    position: absolute;
    left: -20px;
    color: var(--accent-color);
  }
  
  @media (max-width: 768px) {
    .experience-timeline {
      padding-left: 40px;
    }
  
    .experience-item::before {
      left: -40px;
      width: 16px;
      height: 16px;
    }
  
    .experience-content {
      padding: 20px;
    }
  }
  
  /*--------------------------------------------------------------
  # Projects Section
  --------------------------------------------------------------*/
  .projects-filter {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: white;
    padding: 8px 20px;
    margin: 0 5px 10px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .filter-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
  }
  
  .filter-btn:hover::before,
  .filter-btn.active::before {
    opacity: 1;
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(110, 87, 224, 0.3);
  }
  
  .projects-container {
    margin-top: 40px;
  }
  
  .project-item {
    margin-bottom: 30px;
  }
  
  .project-card {
    height: 400px;
    perspective: 1000px;
  }
  
  .project-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .project-card:hover .project-card-inner {
    transform: rotateY(180deg);
  }
  
  .project-card-front,
  .project-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .project-card-front {
    background-color: rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(110, 87, 224, 0.1);
  }
  
  .project-card-back {
    background: var(--gradient-primary);
    color: white;
    transform: rotateY(180deg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .project-img {
    position: relative;
    height: 70%;
    overflow: hidden;
  }
  
  .project-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
  }
  
  .project-card:hover .project-img img {
    transform: scale(1.1);
  }
  
  .project-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
  }
  
  .project-info {
    padding: 20px;
    height: 30%;
  }
  
  .project-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  
  .tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .tech-stack span {
    background: rgba(0, 217, 255, 0.1);
    color: var(--accent-color);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 217, 255, 0.2);
  }
  
  .project-card-back h3 {
    margin-bottom: 20px;
    color: white;
  }
  
  .project-card-back p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .project-links {
    margin-top: auto;
  }
  
  /*--------------------------------------------------------------
  # Skills Section
  --------------------------------------------------------------*/
  .skills-category {
    background: rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 1px solid rgba(110, 87, 224, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .skills-category::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.03) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: -1;
    animation: rotate 20s linear infinite;
  }
  
  .skills-category h3 {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
  }
  
  .skills-category h3::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    bottom: -10px;
    left: 0;
  }
  
  .skills-container {
    margin-top: 30px;
  }
  
  .skill-item {
    margin-bottom: 25px;
  }
  
  .skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  
  .skill-percentage {
    color: var(--accent-color);
    font-weight: 600;
  }
  
  .progress {
    height: 8px;
    background-color: rgba(0, 217, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .progress-bar {
    background: var(--gradient-accent);
    border-radius: 10px;
    transition: width 1s ease;
  }
  
  .tech-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 30px;
    background: rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(110, 87, 224, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .tech-cloud::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.03) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: -1;
    animation: rotate 20s linear infinite;
  }
  
  .tech-item {
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(110, 87, 224, 0.3);
    transition: all 0.3s ease;
    animation: float 3s infinite ease-in-out;
    animation-delay: calc(var(--i) * 0.2s);
  }
  
  .tech-item:hover {
    transform: translateY(-5px);
    background: var(--gradient-accent);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  /*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
  .contact-info-card {
    background: rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(110, 87, 224, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
  }
  
  .contact-info-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.05) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: -1;
    animation: rotate 20s linear infinite;
  }
  
  .contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.3);
    border-color: var(--accent-color);
  }
  
  .contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .contact-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 217, 255, 0.3);
  }
  
  .contact-avatar::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(0, 217, 255, 0.5);
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.5;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .avatar-inner {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
  }
  
  .contact-intro {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(110, 87, 224, 0.1);
  }
  
  .contact-method:hover {
    transform: translateX(10px);
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.2);
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
  }
  
  .contact-details h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
  }
  
  .contact-details p a {
    color: var(--text-color);
    transition: all 0.3s ease;
  }
  
  .contact-details p a:hover {
    color: var(--accent-color);
  }
  
  .contact-cta {
    text-align: center;
    margin-top: 20px;
  }
  
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  .footer {
    background: var(--gradient-darker);
    color: var(--text-color);
    padding: 80px 0 0;
    position: relative;
  }
  
  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://v0.blob.com/footer-bg.png") no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
  }
  
  .footer-info {
    position: relative;
    z-index: 1;
  }
  
  .footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .footer-info p {
    margin-bottom: 20px;
  }
  
  .social-links {
    margin-top: 20px;
  }
  
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 217, 255, 0.2);
  }
  
  .social-links a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
  }
  
  .footer-links {
    position: relative;
    z-index: 1;
  }
  
  .footer-links h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
  }
  
  .footer-links h4::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--gradient-accent);
    bottom: -10px;
    left: 0;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 15px;
  }
  
  .footer-links ul li a {
    color: var(--text-color);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
  }
  
  .footer-links ul li a::before {
    content: "→";
    position: absolute;
    left: -20px;
    top: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-color);
  }
  
  .footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 20px;
  }
  
  .footer-links ul li a:hover::before {
    opacity: 1;
    left: 0;
  }
  
  .footer-newsletter {
    position: relative;
    z-index: 1;
  }
  
  .footer-newsletter h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
  }
  
  .footer-newsletter h4::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--gradient-accent);
    bottom: -10px;
    left: 0;
  }
  
  .footer-newsletter p {
    margin-bottom: 20px;
  }
  
  .footer-bottom {
    background: rgba(8, 13, 26, 0.8);
    padding: 20px 0;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(110, 87, 224, 0.1);
  }
  
  .copyright {
    text-align: center;
  }
  
  /*--------------------------------------------------------------
  # Back to Top Button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
  }
  
  .back-to-top.active {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(110, 87, 224, 0.3);
  }
  
  /*--------------------------------------------------------------
  # Cursor Trail Effect
  --------------------------------------------------------------*/
  .cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
  }
  
  .trail-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 10px var(--glow-accent);
  }
  
  /*--------------------------------------------------------------
  # Glitch Effect for Section Titles
  --------------------------------------------------------------*/
  .glitch-effect {
    position: relative;
    animation: glitch-title 0.5s infinite;
  }
  
  .glitch-effect::before,
  .glitch-effect::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .glitch-effect::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent-color);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-1 0.5s infinite linear alternate-reverse;
  }
  
  .glitch-effect::after {
    left: -2px;
    text-shadow: -2px 0 var(--primary-color);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-2 0.5s infinite linear alternate-reverse;
  }
  
  /*--------------------------------------------------------------
  # Responsive Styles
  --------------------------------------------------------------*/
  @media (max-width: 1199px) {
    .hero-title {
      font-size: 4rem;
    }
  
    .hero-subtitle {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 991px) {
    .hero-title {
      font-size: 3.5rem;
    }
  
    .hero-subtitle {
      font-size: 1.3rem;
    }
  }
  
  @media (max-width: 767px) {
    .hero-title {
      font-size: 2.8rem;
    }
  
    .hero-subtitle {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 575px) {
    .hero-title {
      font-size: 2.2rem;
    }
  
    .hero-subtitle {
      font-size: 1rem;
    }
  }
  
  /* Futuristic Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: rgba(8, 13, 26, 0.8);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-primary);
  }
