
      :root {
        --primary: #00f3ff;
        --secondary: #ff00ff;
        --accent: #9d4edd;
        --dark: #0a0a16;
        --darker: #050510;
        --light: #e2f1f8;
        --glass: rgba(255, 255, 255, 0.05);
        --glass-border: rgba(255, 255, 255, 0.1);
        --neon-glow: 0 0 5px var(--primary), 0 0 10px var(--primary),
          0 0 15px var(--primary), 0 0 20px var(--accent);
        --neon-glow-secondary: 0 0 5px var(--secondary),
          0 0 15px var(--secondary), 0 0 20px var(--accent);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Exo 2", sans-serif;
        background-color: var(--darker);
        color: var(--light);
        overflow-x: hidden;
        line-height: 1.6;
      }

      h1,
      h2,
      h3,
      h4 {
        font-family: "Orbitron", sans-serif;
        font-weight: 700;
        letter-spacing: 1px;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      section {
        padding: 100px 0;
        position: relative;
      }

      /* Preloader */
      #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--darker);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 0.5s ease;
      }

      .loader {
        width: 80px;
        height: 80px;
        border: 5px solid rgba(0, 243, 255, 0.3);
        border-top: 5px solid var(--primary);
        border-radius: 50%;
        animation: spin 1.5s linear infinite;
        position: relative;
      }

      .loader::after {
        content: "";
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border-radius: 50%;
        border: 5px solid transparent;
        border-top: 5px solid var(--secondary);
        animation: spin 2s linear infinite;
      }

      .loader-text {
        position: absolute;
        bottom: 30%;
        font-size: 1.2rem;
        color: var(--primary);
        text-shadow: var(--neon-glow);
        animation: pulse 2s infinite;
      }

      /* Header & Navigation */
      header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 20px 0;
        transition: all 0.3s ease;
      }

      header.scrolled {
        background: rgba(10, 10, 22, 0.95);
        padding: 15px 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      }

      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-family: "Orbitron", sans-serif;
        font-size: 1.8rem;
        font-weight: 900;
        color: var(--light);
        text-decoration: none;
        display: flex;
        align-items: center;
      }

      .logo span {
        color: var(--primary);
        text-shadow: var(--neon-glow);
      }

      .nav-links {
        display: flex;
        list-style: none;
      }

      .nav-links li {
        margin-left: 30px;
      }

      .nav-links a {
        color: var(--light);
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        padding: 5px 0;
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        box-shadow: var(--neon-glow);
        transition: width 0.3s ease;
      }

      .nav-links a:hover {
        color: var(--primary);
      }

      .nav-links a:hover::after {
        width: 100%;
      }

      .hamburger {
        display: none;
        cursor: pointer;
        background: transparent;
        border: none;
        color: var(--light);
        font-size: 1.5rem;
      }

      /* Hero Section */
      #home {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
      }

      .hero-content {
        max-width: 800px;
        z-index: 2;
        position: relative;
      }

      .hero-title {
        font-size: 4rem;
        margin-bottom: 20px;
        line-height: 1.2;
      }

      .gradient-text {
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-block;
      }

      .typing-text {
        font-size: 1.8rem;
        margin-bottom: 30px;
        min-height: 60px;
      }

      .cursor {
        display: inline-block;
        width: 3px;
        margin-left: 5px;
        background: var(--primary);
        animation: blink 1s infinite;
      }

      .hero-btns {
        display: flex;
        gap: 20px;
        margin-top: 40px;
      }

      .btn {
        padding: 12px 30px;
        border-radius: 30px;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
      }

      .btn-primary {
        background: linear-gradient(45deg, var(--primary), var(--accent));
        color: var(--darker);
        box-shadow: var(--neon-glow);
      }

      .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 20px var(--primary);
      }

      .btn-secondary {
        background: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
        box-shadow: var(--neon-glow);
      }

      .btn-secondary:hover {
        background: var(--primary);
        color: var(--darker);
        transform: translateY(-3px);
      }

      .hero-image {
        position: absolute;
        right: 10%;
        top: 25%;
        transform: translateY(-50%);
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: linear-gradient(45deg, var(--primary), var(--secondary));
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--neon-glow);
        z-index: 1;
      }

      .hero-image::before {
        content: "";
        position: absolute;
        width: 90%;
        height: 90%;
        border-radius: 50%;
        background: var(--darker);
        z-index: -1;
      }

      .hero-image img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        filter: grayscale(20%) contrast(120%);
        transition: all 0.5s ease;
      }

      .hero-image:hover img {
        filter: grayscale(0%) contrast(100%);
        transform: scale(1.05);
      }

      .social-icons {
        display: flex;
        gap: 20px;
        margin-top: 40px;
      }

      .social-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--glass);
        border: 1px solid var(--glass-border);
        color: var(--light);
        font-size: 1.3rem;
        transition: all 0.3s ease;
        text-decoration: none;
      }

      .social-icon:hover {
        color: var(--primary);
        transform: translateY(-5px);
        box-shadow: var(--neon-glow);
        background: rgba(0, 243, 255, 0.1);
      }

      /* Background Elements */
      .floating-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
      }

      .floating-element {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(45deg, var(--primary), var(--secondary));
        opacity: 0.1;
        animation: float 15s infinite linear;
      }

      .element-1 {
        width: 100px;
        height: 100px;
        top: 10%;
        left: 5%;
        animation-delay: 0s;
      }

      .element-2 {
        width: 150px;
        height: 150px;
        top: 60%;
        left: 80%;
        animation-delay: 2s;
        animation-duration: 20s;
      }

      .element-3 {
        width: 70px;
        height: 70px;
        top: 80%;
        left: 10%;
        animation-delay: 4s;
        animation-duration: 25s;
      }

      .element-4 {
        width: 120px;
        height: 120px;
        top: 20%;
        left: 70%;
        animation-delay: 6s;
      }

      /* Section Headers */
      .section-header {
        text-align: center;
        margin-bottom: 80px;
        position: relative;
      }

      .section-title {
        font-size: 3rem;
        margin-bottom: 20px;
        display: inline-block;
      }

      .section-subtitle {
        font-size: 1.2rem;
        color: var(--primary);
        max-width: 600px;
        margin: 0 auto;
      }

      .section-header::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        box-shadow: var(--neon-glow);
      }

      /* About Section */
      #about {
        background: var(--dark);
      }

      .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
      }

      .about-text h3 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: var(--primary);
      }

      .about-text p {
        margin-bottom: 20px;
        font-size: 1.1rem;
      }

      .about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 40px;
      }

      .stat {
        text-align: center;
        padding: 20px;
        background: var(--glass);
        border-radius: 10px;
        border: 1px solid var(--glass-border);
        transition: all 0.3s ease;
      }

      .stat:hover {
        transform: translateY(-5px);
        box-shadow: var(--neon-glow);
      }

      .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 10px;
      }

      .stat-text {
        font-size: 1rem;
        color: var(--light);
      }

      .timeline {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
      }

      .timeline::after {
        content: "";
        position: absolute;
        width: 4px;
        background: linear-gradient(
          to bottom,
          var(--primary),
          var(--secondary)
        );
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
        box-shadow: var(--neon-glow);
      }

      .timeline-item {
        padding: 10px 40px;
        position: relative;
        width: 50%;
        box-sizing: border-box;
      }

      .timeline-item:nth-child(odd) {
        left: 0;
      }

      .timeline-item:nth-child(even) {
        left: 50%;
      }

      .timeline-content {
        padding: 20px;
        background: var(--glass);
        border-radius: 10px;
        border: 1px solid var(--glass-border);
        position: relative;
        transition: all 0.3s ease;
      }

      .timeline-content:hover {
        transform: translateY(-5px);
        box-shadow: var(--neon-glow);
      }

      .timeline-content::after {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        right: -10px;
        background: var(--primary);
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        border-radius: 3px;
        box-shadow: var(--neon-glow);
      }

      .timeline-item:nth-child(even) .timeline-content::after {
        left: -10px;
        right: auto;
      }

      .timeline-date {
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 10px;
      }

      .timeline-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
      }

      /* Skills Section */
      .skills-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }

      .skill-category {
        background: var(--glass);
        border-radius: 15px;
        padding: 30px;
        border: 1px solid var(--glass-border);
        transition: all 0.3s ease;
      }

      .skill-category:hover {
        transform: translateY(-10px);
        box-shadow: var(--neon-glow);
      }

      .skill-category h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: var(--primary);
        text-align: center;
      }

      .skill-item {
        margin-bottom: 20px;
      }

      .skill-info {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
      }

      .skill-name {
        font-weight: 600;
      }

      .skill-percentage {
        color: var(--primary);
      }

      .skill-bar {
        height: 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        overflow: hidden;
      }

      .skill-progress {
        height: 100%;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 5px;
        width: 0;
        transition: width 1.5s ease;
        box-shadow: var(--neon-glow);
      }

      /* New Skill Icons Section */
      .skill-icons-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 50px;
      }

      .skill-icon-box {
        background: var(--glass);
        border-radius: 15px;
        padding: 25px 15px;
        border: 1px solid var(--glass-border);
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        cursor: pointer;
      }

      .skill-icon-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, var(--primary), var(--secondary));
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
      }

      .skill-icon-box:hover {
        transform: translateY(-10px);
        box-shadow: var(--neon-glow);
      }

      .skill-icon-box:hover::before {
        opacity: 0.1;
      }

      .skill-icon {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 15px;
        transition: all 0.3s ease;
      }

      .skill-icon-box:hover .skill-icon {
        transform: scale(1.2);
        color: var(--secondary);
      }

      .skill-icon-name {
        font-weight: 600;
        font-size: 1rem;
      }

      /* Certificate Modal */
      .certificate-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(5, 5, 16, 0.95);
        z-index: 2000;
        justify-content: center;
        align-items: center;
      }

      .certificate-modal.active {
        display: flex;
      }

      .certificate-content {
        background: var(--dark);
        border-radius: 15px;
        padding: 30px;
        max-width: 800px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        border: 1px solid var(--glass-border);
        box-shadow: var(--neon-glow);
        position: relative;
      }

      .certificate-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: transparent;
        border: none;
        color: var(--primary);
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .certificate-close:hover {
        transform: scale(1.2);
        color: var(--secondary);
      }

      .certificate-title {
        font-size: 2rem;
        margin-bottom: 20px;
        color: var(--primary);
        text-align: center;
      }

      .certificate-image {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 20px;
        border: 1px solid var(--glass-border);
      }

      .certificate-details {
        margin-bottom: 20px;
      }

      .certificate-link {
        display: inline-block;
        padding: 10px 20px;
        background: var(--primary);
        color: var(--darker);
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
      }

      .certificate-link:hover {
        background: var(--secondary);
        transform: translateY(-3px);
        box-shadow: var(--neon-glow);
      }

      /* Projects Section */
      #projects {
        background: var(--dark);
      }

      .project-filters {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 50px;
      }

      .filter-btn {
        padding: 10px 20px;
        background: transparent;
        border: 1px solid var(--glass-border);
        color: var(--light);
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: "Exo 2", sans-serif;
        font-size: 1rem;
      }

      .filter-btn.active,
      .filter-btn:hover {
        background: var(--primary);
        color: var(--darker);
        box-shadow: var(--neon-glow);
      }

      .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
      }

      .project-card {
        background: var(--glass);
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid var(--glass-border);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
      }

      .project-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: var(--neon-glow);
      }

      .project-img {
        height: 200px;
        width: 100%;
        position: relative;
        overflow: hidden;
      }

      .project-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      .project-card:hover .project-img img {
        transform: scale(1.15);
      }

      .project-img::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 10, 22, 0.222);
        transition: all 0.5s ease;
      }

      .project-card:hover .project-img::after {
        background: rgba(10, 10, 22, 0);
      }

      .project-content {
        padding: 20px;
      }

      .project-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: var(--primary);
      }

      .project-desc {
        margin-bottom: 20px;
        font-size: 0.95rem;
      }

      .project-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
      }

      .project-tag {
        padding: 5px 10px;
        background: rgba(0, 243, 255, 0.1);
        border: 1px solid var(--primary);
        border-radius: 20px;
        font-size: 0.8rem;
        color: var(--primary);
      }

      .project-links {
        display: flex;
        gap: 15px;
      }

      .project-link {
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: all 0.3s ease;
      }

      .project-demo {
        background: var(--primary);
        color: var(--darker);
      }

      .project-code {
        background: transparent;
        color: var(--primary);
        border: 1px solid var(--primary);
      }

      .project-demo:hover,
      .project-code:hover {
        transform: translateY(-3px);
        box-shadow: var(--neon-glow);
      }

      /* Resume Section */
      #resume {
        position: relative;
        overflow: hidden;
      }

      .resume-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
      }

      .resume-section {
        margin-bottom: 40px;
      }

      .resume-section h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
        color: var(--primary);
        position: relative;
        display: inline-block;
      }

      .resume-section h3::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--primary);
        box-shadow: var(--neon-glow);
      }

      .resume-item {
        margin-bottom: 30px;
        padding: 20px;
        background: var(--glass);
        border-radius: 10px;
        border: 1px solid var(--glass-border);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
      }

      .resume-item:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: var(--neon-glow);
      }

      .resume-item::before {
        content: "";
        position: absolute;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: var(--primary);
        left: -30px;
        top: 30px;
        box-shadow: var(--neon-glow);
      }

      .resume-date {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 10px;
      }

      .resume-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
      }

      .resume-subtitle {
        font-style: italic;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.7);
      }

      .download-options {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 50px;
        flex-wrap: wrap;
      }

      .download-btn {
        display: flex;
        justify-content: center;
        margin-top: 20px;
      }

      .btn-resume {
        padding: 12px 25px;
        border-radius: 30px;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        display: inline-flex;
        align-items: center;
        gap: 10px;
      }

      .btn-preview {
        background: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
        box-shadow: var(--neon-glow);
      }

      .btn-preview:hover {
        background: var(--primary);
        color: var(--darker);
        transform: translateY(-5px) scale(1.05);
      }

      .btn-download {
        background: linear-gradient(45deg, var(--primary), var(--accent));
        color: var(--darker);
        box-shadow: var(--neon-glow);
      }

      .btn-download:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 0 20px var(--primary);
      }

      /* Contact Section */
      #contact {
        background: var(--dark);
      }

      .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
      }

      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 30px;
      }

      .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      .contact-item:hover {
        transform: translateX(10px);
      }

      .contact-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--glass);
        border: 1px solid var(--glass-border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.2rem;
        flex-shrink: 0;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      .contact-item:hover .contact-icon {
        transform: scale(1.2);
        box-shadow: var(--neon-glow);
      }

      .contact-details h4 {
        font-size: 1.2rem;
        margin-bottom: 5px;
        color: var(--primary);
      }

      .contact-form {
        background: var(--glass);
        border-radius: 15px;
        padding: 30px;
        border: 1px solid var(--glass-border);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      .contact-form:hover {
        transform: translateY(-5px);
        box-shadow: var(--neon-glow);
      }

      .form-group {
        margin-bottom: 20px;
        position: relative;
      }

      .form-control {
        width: 100%;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        border-radius: 8px;
        color: var(--light);
        font-family: "Exo 2", sans-serif;
        font-size: 1rem;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: var(--neon-glow);
        transform: scale(1.02);
      }

      textarea.form-control {
        min-height: 150px;
        resize: vertical;
      }

      .submit-btn {
        width: 100%;
        padding: 15px;
        background: linear-gradient(45deg, var(--primary), var(--accent));
        border: none;
        border-radius: 8px;
        color: var(--darker);
        font-family: "Exo 2", sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
      }

      .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--neon-glow);
      }

      .submit-btn:active {
        transform: translateY(0);
      }

      .form-message {
        margin-top: 15px;
        padding: 10px;
        border-radius: 5px;
        text-align: center;
        font-weight: 600;
        display: none;
      }

      .form-message.success {
        background: rgba(0, 255, 0, 0.1);
        color: #00ff00;
        border: 1px solid #00ff00;
        display: block;
      }

      .form-message.error {
        background: rgba(255, 0, 0, 0.1);
        color: #ff5555;
        border: 1px solid #ff5555;
        display: block;
      }

      /* Footer */
      footer {
        background: var(--darker);
        padding: 50px 0 20px;
        text-align: center;
      }

      .footer-content {
        max-width: 600px;
        margin: 0 auto;
      }

      .footer-logo {
        font-family: "Orbitron", sans-serif;
        font-size: 2rem;
        font-weight: 900;
        margin-bottom: 20px;
      }

      .footer-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin: 30px 0;
      }

      .footer-link {
        color: var(--light);
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .footer-link:hover {
        color: var(--primary);
      }

      .footer-social {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 30px 0;
      }

      .copyright {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid var(--glass-border);
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.9rem;
      }

      /* Scroll to Top */
      .scroll-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--primary);
        color: var(--darker);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        opacity: 0;
        visibility: hidden;
        z-index: 999;
        box-shadow: var(--neon-glow);
      }

      .scroll-top.active {
        opacity: 1;
        visibility: visible;
      }

      .scroll-top:hover {
        transform: translateY(-5px) scale(1.1);
      }

      /* Animations */
      @keyframes spin {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }

      @keyframes pulse {
        0% {
          opacity: 0.7;
        }
        50% {
          opacity: 1;
        }
        100% {
          opacity: 0.7;
        }
      }

      @keyframes float {
        0% {
          transform: translateY(0) rotate(0deg);
        }
        50% {
          transform: translateY(-20px) rotate(180deg);
        }
        100% {
          transform: translateY(0) rotate(360deg);
        }
      }

      @keyframes blink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0;
        }
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes glow {
        0% {
          box-shadow: 0 0 5px var(--primary);
        }
        50% {
          box-shadow: 0 0 20px var(--primary), 0 0 30px var(--secondary);
        }
        100% {
          box-shadow: 0 0 5px var(--primary);
        }
      }

      @keyframes slideInLeft {
        from {
          opacity: 0;
          transform: translateX(-50px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      @keyframes slideInRight {
        from {
          opacity: 0;
          transform: translateX(50px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      @keyframes bounce {
        0%,
        20%,
        50%,
        80%,
        100% {
          transform: translateY(0);
        }
        40% {
          transform: translateY(-10px);
        }
        60% {
          transform: translateY(-5px);
        }
      }

      @keyframes shimmer {
        0% {
          background-position: -1000px 0;
        }
        100% {
          background-position: 1000px 0;
        }
      }

      /* New Animation Classes */
      .fade-in-up {
        animation: fadeInUp 0.8s ease forwards;
      }

      .slide-in-left {
        animation: slideInLeft 0.8s ease forwards;
      }

      .slide-in-right {
        animation: slideInRight 0.8s ease forwards;
      }

      .bounce {
        animation: bounce 2s infinite;
      }

      .glow-animation {
        animation: glow 2s infinite;
      }

      .shimmer {
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.2),
          transparent
        );
        background-size: 1000px 100%;
        animation: shimmer 2s infinite;
      }

      .delay-1 {
        animation-delay: 0.2s;
      }
      .delay-2 {
        animation-delay: 0.4s;
      }
      .delay-3 {
        animation-delay: 0.6s;
      }
      .delay-4 {
        animation-delay: 0.8s;
      }
      .delay-5 {
        animation-delay: 1s;
      }

      /* Particle Background */
      #particles-js {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
      }

      /* Advanced Animation Elements */
      .pulse-ring {
        position: absolute;
        border: 2px solid var(--primary);
        border-radius: 50%;
        animation: pulse-ring 3s linear infinite;
      }

      @keyframes pulse-ring {
        0% {
          transform: scale(0.8);
          opacity: 1;
        }
        100% {
          transform: scale(2);
          opacity: 0;
        }
      }

      .floating-text {
        animation: floating-text 3s ease-in-out infinite;
      }

      @keyframes floating-text {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-10px);
        }
      }

      /* Responsive Design */
      @media (max-width: 992px) {
        .hero-title {
          font-size: 3rem;
        }

        .hero-image {
          width: 300px;
          height: 300px;
          right: 5%;
        }

        .about-content,
        .resume-container,
        .contact-container {
          grid-template-columns: 1fr;
        }

        .timeline::after {
          left: 31px;
        }

        .timeline-item {
          width: 100%;
          padding-left: 70px;
          padding-right: 25px;
        }

        .timeline-item:nth-child(even) {
          left: 0;
        }

        .timeline-content::after {
          left: -10px;
          right: auto;
        }
      }

      @media (max-width:800px) {
        .nav-links {
          position: fixed;
          top: 0;
          left: -100%;
          width: 70%;
          height: 100vh;
          background: var(--dark);
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 40px;
          transition: all 0.5s ease;
          z-index: 1000;
        }

        .nav-links.active {
          left: 0;
        }

        .hamburger {
          display: block;
          z-index: 1001;
        }

        .hero-content {
          text-align: center;
        }

        .hero-btns {
          justify-content: center;
        }

        .hero-image {
          position: relative;
          right: auto;
          top: auto;
          transform: none;
          margin: 40px auto;
        }

        .about-stats {
          grid-template-columns: 1fr;
        }

        .projects-grid {
          grid-template-columns: 1fr;
        }

        .skill-icons-container {
          grid-template-columns: repeat(2, 1fr);
        }

        .download-options {
          flex-direction: column;
          align-items: center;
        }
      }

      @media (max-width: 576px) {
        .hero-title {
          font-size: 2.5rem;
        }

        .typing-text {
          font-size: 1.5rem;
        }

        .section-title {
          font-size: 2.5rem;
        }

        .btn {
          padding: 10px 20px;
          font-size: 1rem;
        }

        .skill-icons-container {
          grid-template-columns: 1fr;
        }
      }
      #sv {
        max-width: 800px;
       
      } 

      @media (min-width:800px) {
          .hero-image {
          position: relative;
          right: auto;
          left: 250px;
          top: -30px;
          transform: none;
          margin: 40px auto;
          width: 360px;
          height: 360px;
        }
        #sv {
        max-width: 800px;
       
      } 
      .typing-text{
        margin-top: -260px;
      }
      
      }
        @media (min-width:800px){
           .typing-text{
            margin-top: 30px;
            
           }
           .hero-content{
            margin-top: -40px;
            margin-bottom: 40px;
           }
           .hero-image{
             
          right: auto;
          left: 0px;
          top: 30px;
          transform: none;
          margin-top: 40px ;
          width: 360px;
          height: 360px;
           }
        }
         @media (min-width:1330px){
          .hero-image{
            left:260px;
            width: 450px;
            height: 450px;
            top:-40px;
          }
          .typing-text{
            margin-top:-270px;
          }

         }
      
  












         
      /* =============================================
         SCROLL REVEAL ANIMATIONS
         ============================================= */

      /* Hidden state — before scroll */
      .reveal {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.6s ease, transform 0.6s ease;
      }

      .reveal.reveal-left {
        transform: translateX(-60px);
      }

      .reveal.reveal-right {
        transform: translateX(60px);
      }

      .reveal.reveal-scale {
        transform: scale(0.85);
      }

      /* Visible state — after scroll */
      .reveal.visible {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1);
      }

      /* Stagger delay for one-by-one effect */
      .reveal-delay-1 { transition-delay: 0.1s; }
      .reveal-delay-2 { transition-delay: 0.2s; }
      .reveal-delay-3 { transition-delay: 0.3s; }
      .reveal-delay-4 { transition-delay: 0.4s; }
      .reveal-delay-5 { transition-delay: 0.5s; }
      .reveal-delay-6 { transition-delay: 0.6s; }
      .reveal-delay-7 { transition-delay: 0.7s; }
      .reveal-delay-8 { transition-delay: 0.8s; }
