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

      :root {
        --bg-primary: #0a0a0a;
        --bg-secondary: #1a1a1a;
        --bg-tertiary: #2a2a2a;
        --accent-primary: #fc4a1a;
        --accent-secondary: #f7b733;
        --text-primary: #ffffff;
        --text-secondary: #b0b0b0;
        --text-muted: #808080;
        --gradient: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%);
        --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        --shadow-glow: 0 0 40px rgba(252, 74, 26, 0.18);
        --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
        --glass: rgba(255, 255, 255, 0.04);
        --glass-border: rgba(255, 255, 255, 0.09);
        --gradient-2: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%);
        --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
        --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        color-scheme: dark;
      }

      body {
        background: var(--bg-primary);
        color: var(--text-primary);
        font-family: "Inter", sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
      }

      .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 1rem 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

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

      .logo {
        font-size: 1.5rem;
        font-weight: bold;
        background: var(--gradient-2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

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

      .nav-links a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: color 0.3s ease;
        position: relative;
      }

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

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

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

      .menu-toggle {
        display: none;
        background: none;
        border: none;
        color: var(--text-primary);
        font-size: 1.5rem;
        cursor: pointer;
      }

      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background:
          radial-gradient(circle at 30% 70%, rgba(252, 74, 26, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 70% 30%, rgba(247, 183, 51, 0.1) 0%, transparent 50%);
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(252, 74, 26, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(252, 74, 26, 0.04) 1px, transparent 1px);
        background-size: 50px 50px;
        pointer-events: none;
        z-index: 0;
      }

      .split-hero .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 4rem;
        position: relative;
        z-index: 1;
      }

      @media (max-width: 900px) {
        .split-hero .hero-grid {
          grid-template-columns: 1fr;
          text-align: left;
          gap: 2rem;
        }
      }

      .hero-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
      }

      @media (max-width: 900px) {
        .hero-left {
          align-items: center;
        }
      }

      .hero-greeting {
        font-size: clamp(3rem, 6vw, 4.5rem);
        font-weight: bold;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
      }

      .hero-greeting .dot {
        color: var(--accent-primary);
      }

      .hero-name-wrapper {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
      }

      .hero-line {
        width: 60px;
        height: 3px;
        background: var(--accent-primary);
      }

      .hero-name {
        font-size: clamp(1.5rem, 3vw, 2.2rem);
        font-weight: 300;
        color: var(--text-primary);
        margin: 0;
      }

      .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        margin-bottom: 2.5rem;
        line-height: 1.1;
        color: var(--text-primary);
      }

      .hero-ctas {
        display: flex;
        gap: 1rem;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-bottom: 3rem;
      }

      .hero-right {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2rem 0;
      }

      .hero-image-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: clamp(250px, 40vw, 450px);
        height: clamp(250px, 40vw, 450px);
      }

      .hero-image-wrapper::before {
        content: "";
        position: absolute;
        width: 140%;
        height: 140%;
        background: radial-gradient(circle, rgba(252, 74, 26, 0.3) 0%, rgba(247, 183, 51, 0.1) 40%, transparent 70%);
        filter: blur(30px);
        z-index: -1;
        animation: pulseMist 4s ease-in-out infinite alternate;
      }

      @keyframes pulseMist {
        0% {
          transform: scale(1);
          opacity: 0.6;
        }
        100% {
          transform: scale(1.1);
          opacity: 0.9;
        }
      }

      @media (max-width: 900px) {
        .hero-image-wrapper {
          width: clamp(250px, 70vw, 350px);
          height: clamp(250px, 70vw, 350px);
        }
      }

      .hero-ring {
        position: absolute;
        width: 80%;
        height: 80%;
        border: 15px solid var(--accent-primary);
        border-radius: 50%;
        opacity: 0.7;
        z-index: 0;
      }

      .hero-profile-img {
        position: relative;
        z-index: 1;
        max-width: 95%;
        max-height: 95%;
        object-fit: contain;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
        border-radius: 20px;
      }

      .deco {
        position: absolute;
        font-size: 4rem;
        color: rgba(252, 74, 26, 0.2);
        font-weight: 100;
        font-family: monospace;
        z-index: 0;
      }

      .deco-left {
        left: -20px;
        top: 30%;
      }

      .deco-right {
        right: -20px;
        bottom: 20%;
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(0, 217, 255, 0.1);
        border: 1px solid rgba(0, 217, 255, 0.3);
        color: var(--accent-primary);
        padding: 0.4rem 1.1rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 1.5rem;
        animation: badgePulse 2.5s ease-in-out infinite;
      }

      .hero-badge .dot {
        width: 7px;
        height: 7px;
        background: #22c55e;
        border-radius: 50%;
        animation: dotBlink 1.2s ease-in-out infinite;
      }

      @keyframes badgePulse {
        0%,
        100% {
          box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.2);
        }

        50% {
          box-shadow: 0 0 0 8px rgba(0, 217, 255, 0);
        }
      }

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

        50% {
          opacity: 0.3;
        }
      }

      .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
      }

      .btn {
        padding: 1rem 2rem;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        position: relative;
        overflow: hidden;
      }

      .btn-primary {
        background: var(--gradient);
        color: white;
      }

      .btn-primary::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
        transform: translateX(-100%);
        transition: transform 0.5s ease;
      }

      .btn-primary:hover::after {
        transform: translateX(100%);
      }

      .btn-secondary {
        background: transparent;
        color: var(--accent-primary);
        border: 2px solid var(--accent-primary);
      }

      .btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
      }

      .stats-bar {
        display: flex;
        gap: 2.5rem;
        justify-content: center;
        margin-top: 3rem;
        padding: 1.5rem 3rem;
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        backdrop-filter: blur(12px);
        flex-wrap: wrap;
      }

      .hero-stats {
        margin-top: 0;
        padding: 1.5rem;
        justify-content: space-between;
        gap: 1rem;
        flex-wrap: nowrap;
      }

      @media (max-width: 900px) {
        .hero-stats {
          flex-wrap: wrap;
          justify-content: center;
          gap: 1.5rem;
        }
      }

      .hero-stats .stat-number {
        font-size: 1.8rem;
      }

      .hero-stats .stat-label {
        font-size: 0.75rem;
      }

      .stat-item {
        text-align: center;
      }

      .stat-number {
        font-size: 2.2rem;
        font-weight: 800;
        background: var(--gradient-2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
      }

      .stat-label {
        font-size: 0.82rem;
        color: var(--text-muted);
        margin-top: 0.3rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
      }

      .section {
        padding: 5rem 0;
        position: relative;
      }

      .section-header {
        text-align: center;
        margin-bottom: 3rem;
      }

      .section-header h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1rem;
        color: var(--text-primary);
        position: relative;
        display: inline-block;
      }

      .section-accent {
        display: block;
        width: 60px;
        height: 3px;
        background: var(--gradient-2);
        border-radius: 2px;
        margin: 0.7rem auto 0;
        position: relative;
        overflow: hidden;
      }

      .section-accent::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.4);
        transform: translateX(-100%);
        animation: accentShimmer 2.5s ease-in-out infinite;
      }

      @keyframes accentShimmer {
        0% {
          transform: translateX(-100%);
        }

        50% {
          transform: translateX(100%);
        }

        100% {
          transform: translateX(100%);
        }
      }

      .section-header p {
        font-size: 1.1rem;
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto;
      }

      .about-content {
        display: block;
        max-width: 800px;
        margin: 0 auto;
      }

      .about-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--accent-primary);
      }

      .about-text p {
        margin-bottom: 1rem;
        color: var(--text-secondary);
        line-height: 1.8;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
        gap: 2rem;
        margin-top: 2rem;
      }

      .service-card {
        display: flex;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.7);
        backdrop-filter: blur(12px);
        padding: 2.5rem;
        border-radius: 15px;
        border: 1px solid var(--bg-tertiary);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient);
        transform: scaleX(0);
        transition: transform 0.3s ease;
      }

      .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-glow), var(--shadow-card);
        border-color: rgba(0, 217, 255, 0.3);
      }

      .service-card:hover::before {
        transform: scaleX(1);
      }

      .service-icon {
        width: 80px;
        height: 80px;
        background: var(--gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        font-size: 2rem;
        transition: transform 0.4s var(--bounce);
      }

      .service-card:hover .service-icon {
        transform: scale(1.1) rotate(5deg);
      }

      .service-card h3 {
        color: var(--accent-primary);
        font-size: 1.5rem;
        margin-bottom: 1rem;
      }

      .service-card p {
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 1.5rem;
      }

      .service-features {
        list-style: none;
        margin-bottom: 2rem;
        flex-grow: 1;
      }

      .service-features li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.8rem;
        color: var(--text-secondary);
        line-height: 1.5;
      }

      .service-features li::before {
        content: "\2192";
        position: absolute;
        left: 0;
        color: var(--accent-primary);
        font-weight: bold;
      }

      .service-tech {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: auto;
      }

      .skills-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
      }

      .skill-category {
        background: rgba(26, 26, 26, 0.7);
        backdrop-filter: blur(12px);
        padding: 2rem;
        border-radius: 15px;
        border: 1px solid var(--bg-tertiary);
        transition: transform 0.3s ease;
      }

      .skill-category:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-glow), var(--shadow-card);
        border-color: rgba(0, 217, 255, 0.3);
      }

      .skill-category h3 {
        color: var(--accent-primary);
        margin-bottom: 1rem;
        font-size: 1.3rem;
      }

      .skill-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
      }

      .skill-tag {
        background: var(--bg-tertiary);
        color: var(--text-secondary);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        border: 1px solid var(--bg-tertiary);
        transition: all 0.3s ease;
      }

      .skill-tag:hover {
        border-color: var(--accent-primary);
        color: var(--accent-primary);
        background: rgba(0, 217, 255, 0.1);
        box-shadow: 0 0 12px rgba(0, 217, 255, 0.2);
      }

      .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
      }

      .project-card {
        display: flex;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.7);
        backdrop-filter: blur(12px);
        border-radius: 15px;
        overflow: hidden;
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
        border: 1px solid var(--bg-tertiary);
      }

      .project-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-glow), var(--shadow-card);
        border-color: rgba(0, 217, 255, 0.3);
      }

      .project-image {
        height: 200px;
        background: var(--bg-tertiary);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }

      .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s var(--bounce);
      }

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

      .project-content {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
      }

      .project-content h3 {
        color: var(--accent-primary);
        margin-bottom: 0.5rem;
        font-size: 1.3rem;
      }

      .project-content p {
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
        line-height: 1.6;
      }

      .project-tech {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
      }

      .tech-tag {
        background: var(--bg-tertiary);
        color: var(--accent-primary);
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        font-size: 0.8rem;
        border: 1px solid var(--glass-border);
      }

      .project-links {
        display: flex;
        gap: 1rem;
        margin-top: auto;
      }

      .project-links a {
        color: var(--text-primary);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
      }

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

      .experience-timeline {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        padding-left: 2.5rem;
      }

      .experience-timeline::before {
        content: "";
        position: absolute;
        left: 0.5rem;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--accent-primary), transparent);
        border-radius: 1px;
      }

      .timeline-item {
        background: rgba(26, 26, 26, 0.7);
        backdrop-filter: blur(12px);
        padding: 2rem;
        border-radius: 15px;
        margin-bottom: 2rem;
        position: relative;
      }

      .timeline-item::before {
        content: "";
        position: absolute;
        left: -2.35rem;
        top: 2.2rem;
        width: 14px;
        height: 14px;
        background: var(--accent-primary);
        border-radius: 50%;
        box-shadow: 0 0 12px rgba(0, 217, 255, 0.8);
        border: 3px solid var(--bg-primary);
      }

      .timeline-item h3 {
        color: var(--accent-primary);
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
      }

      .timeline-item .company {
        color: var(--text-secondary);
        margin-bottom: 0.5rem;
      }

      .timeline-item .duration {
        color: var(--text-muted);
        font-size: 0.9rem;
        margin-bottom: 1rem;
      }

      .timeline-item ul {
        color: var(--text-secondary);
        padding-left: 1rem;
      }

      .timeline-item li {
        margin-bottom: 0.5rem;
        line-height: 1.6;
      }

      .education-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
      }

      .education-card {
        background: rgba(26, 26, 26, 0.7);
        backdrop-filter: blur(12px);
        padding: 2rem;
        border-radius: 15px;
        border: 1px solid var(--bg-tertiary);
        text-align: center;
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
      }

      .education-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-glow), var(--shadow-card);
        border-color: rgba(0, 217, 255, 0.3);
      }

      .education-card h3 {
        color: var(--accent-primary);
        margin-bottom: 0.5rem;
      }

      .education-card .institution {
        color: var(--text-secondary);
        margin-bottom: 0.5rem;
      }

      .education-card .year {
        color: var(--text-muted);
        font-size: 0.9rem;
      }

      .education-card .edu-description {
        color: var(--text-secondary);
        margin-top: 1rem;
        font-size: 0.9rem;
        flex-grow: 1;
      }

      .education-card .project-links {
        margin-top: 1.5rem;
      }

      .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
      }

      .testimonial-card {
        background: rgba(26, 26, 26, 0.7);
        backdrop-filter: blur(12px);
        padding: 2rem;
        border-radius: 15px;
        border: 1px solid var(--bg-tertiary);
        position: relative;
      }

      .testimonial-card::before {
        content: '"';
        font-size: 4rem;
        color: var(--accent-primary);
        position: absolute;
        top: -10px;
        left: 20px;
      }

      .testimonial-text {
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 1rem;
        font-style: italic;
      }

      .testimonial-author {
        color: var(--accent-primary);
        font-weight: bold;
      }

      .testimonial-role {
        color: var(--text-muted);
        font-size: 0.9rem;
      }

      .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
      }

      .contact-info h3 {
        color: var(--accent-primary);
        margin-bottom: 1rem;
      }

      .contact-info p {
        color: var(--text-secondary);
        margin-bottom: 2rem;
        line-height: 1.6;
      }

      .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 2rem;
      }

      .social-link {
        width: 50px;
        height: 50px;
        background: var(--bg-secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid var(--bg-tertiary);
      }

      .social-link:hover {
        background: var(--accent-primary);
        color: white;
        transform: translateY(-3px);
      }

      .contact-form {
        background: var(--bg-secondary);
        padding: 2rem;
        border-radius: 15px;
        border: 1px solid var(--bg-tertiary);
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--text-secondary);
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 1rem;
        background: var(--bg-tertiary);
        border: 1px solid var(--bg-tertiary);
        color: white;
        border-radius: 8px;
        transition:
          border-color 0.3s ease,
          box-shadow 0.3s ease;
      }

      .form-group input:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: var(--accent-primary);
        box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.15);
      }

      .form-group textarea {
        resize: vertical;
        min-height: 120px;
      }

      .footer {
        background: var(--bg-secondary);
        padding: 2rem 0;
        text-align: center;
        border-top: 1px solid var(--bg-tertiary);
      }

      .footer p {
        color: var(--text-muted);
      }

      .footer-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }

      .footer-social {
        display: flex;
        gap: 0.8rem;
      }

      .footer-social a {
        width: 38px;
        height: 38px;
        background: var(--bg-tertiary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        text-decoration: none;
        transition: all var(--transition);
        font-size: 0.9rem;
      }

      .footer-social a:hover {
        background: var(--accent-primary);
        color: var(--bg-primary);
        transform: translateY(-3px);
        box-shadow: 0 4px 15px rgba(0, 217, 255, 0.35);
      }

      .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        color: var(--text-muted);
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        animation: scrollFade 2s ease-in-out infinite;
        z-index: 1;
      }

      .scroll-indicator i {
        font-size: 1.1rem;
        animation: bounceDown 1.5s ease-in-out infinite;
      }

      @keyframes bounceDown {
        0%,
        100% {
          transform: translateY(0);
        }

        50% {
          transform: translateY(6px);
        }
      }

      @keyframes scrollFade {
        0%,
        100% {
          opacity: 0.4;
        }

        50% {
          opacity: 1;
        }
      }

      @media (max-width: 768px) {
        .nav-links {
          position: fixed;
          top: 70px;
          left: -100%;
          width: 100%;
          height: calc(100vh - 70px);
          background: rgba(10, 10, 10, 0.95);
          backdrop-filter: blur(10px);
          flex-direction: column;
          justify-content: center;
          align-items: center;
          transition: left 0.3s ease;
        }

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

        .menu-toggle {
          display: block;
        }

        .about-content {
          grid-template-columns: 1fr;
          text-align: center;
        }

        .contact-content {
          grid-template-columns: 1fr;
        }

        .cta-buttons {
          flex-direction: column;
          align-items: center;
        }

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

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

      .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
      }

      .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
      }

      html {
        scroll-behavior: smooth;
      }

      ::-webkit-scrollbar {
        width: 8px;
      }

      ::-webkit-scrollbar-track {
        background: var(--bg-primary);
      }

      ::-webkit-scrollbar-thumb {
        background: var(--accent-primary);
        border-radius: 4px;
      }
    

    /* Anchor scroll offset for fixed navbar */
    section[id] { scroll-margin-top: 80px; }
