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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

         .logo {
    		font-size: 1.5rem;
    		font-weight: bold;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    		-webkit-background-clip: text;
    		-webkit-text-fill-color: transparent;
    		background-clip: text;
    		display: flex;
    		align-items: center;
    		gap: 0.5rem;
}

			.logo img {
   			 height: 60px; /* Adjust size as needed */
    		width: auto;
   			 -webkit-text-fill-color: initial; /* Reset for the image */
    		background: none;
		}

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

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #667eea;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #ffffff;
            margin: 3px 0;
            transition: all 0.3s;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        section {
            padding: 3rem 5%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ── GRADIENT MESH HERO ── */
        .hero {
            background: #0a0a0f;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* grain overlay */
        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
            opacity: 0.04;
            pointer-events: none;
            z-index: 1;
        }

        /* mesh blob container */
        .mesh {
            position: absolute;
            inset: -20%;
            width: 140%;
            height: 140%;
            pointer-events: none;
            z-index: 0;
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            opacity: 0.55;
            mix-blend-mode: screen;
        }

        .blob-1 {
            width: 60vw; height: 60vw;
            top: -10%; left: -15%;
            background: radial-gradient(circle, #5b1fa8 0%, transparent 70%);
            animation: drift1 14s ease-in-out infinite alternate;
        }
        .blob-2 {
            width: 50vw; height: 50vw;
            bottom: -10%; right: -10%;
            background: radial-gradient(circle, #1a0533 0%, #a855f7 50%, transparent 70%);
            animation: drift2 18s ease-in-out infinite alternate;
        }
        .blob-3 {
            width: 40vw; height: 40vw;
            top: 30%; left: 35%;
            background: radial-gradient(circle, #c084fc 0%, transparent 65%);
            opacity: 0.3;
            animation: drift3 22s ease-in-out infinite alternate;
        }
        .blob-4 {
            width: 30vw; height: 30vw;
            top: 5%; right: 20%;
            background: radial-gradient(circle, #2d0060 0%, transparent 70%);
            opacity: 0.7;
            animation: drift4 16s ease-in-out infinite alternate;
        }

        @keyframes drift1 {
            from { transform: translate(0, 0) scale(1); }
            to   { transform: translate(8vw, 6vh) scale(1.15); }
        }
        @keyframes drift2 {
            from { transform: translate(0, 0) scale(1); }
            to   { transform: translate(-6vw, -8vh) scale(1.1); }
        }
        @keyframes drift3 {
            from { transform: translate(0, 0) scale(1); }
            to   { transform: translate(-5vw, 7vh) scale(1.2); }
        }
        @keyframes drift4 {
            from { transform: translate(0, 0) scale(1); }
            to   { transform: translate(4vw, 5vh) scale(0.9); }
        }

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

        .hero-eyebrow {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: #c084fc;
            margin-bottom: 1.4rem;
            animation: fadeInUp 0.8s ease 0.1s backwards;
        }

        .hero h1 {
            font-size: clamp(2.8rem, 7vw, 5.5rem);
            font-weight: 300;
            line-height: 1.08;
            margin-bottom: 1.2rem;
            animation: fadeInUp 0.9s ease 0.3s backwards;
        }

        .hero h1 em {
            font-style: normal;
            background: linear-gradient(135deg, #ffffff 0%, #c084fc 50%, #5b1fa8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1rem;
            opacity: 0.6;
            letter-spacing: 0.05em;
            line-height: 1.8;
            max-width: 440px;
            margin: 0 auto 2.5rem;
            animation: fadeInUp 0.9s ease 0.5s backwards;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.9s ease 0.7s backwards;
        }

        .btn-primary {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 0.85rem 2.2rem;
            border-radius: 2px;
            background: linear-gradient(135deg, #5b1fa8, #c084fc);
            color: #fff;
            border: none;
            cursor: pointer;
            box-shadow: 0 0 30px rgba(168,85,247,0.35);
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            box-shadow: 0 0 50px rgba(192,132,252,0.55);
            transform: translateY(-2px);
        }

        .btn-ghost {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 0.85rem 2.2rem;
            border-radius: 2px;
            background: transparent;
            color: rgba(244,240,255,0.7);
            border: 1px solid rgba(168,85,247,0.35);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn-ghost:hover {
            border-color: #c084fc;
            color: #f4f0ff;
            background: rgba(168,85,247,0.08);
            transform: translateY(-2px);
        }

        .hero-line {
            width: 1px;
            height: 70px;
            background: linear-gradient(to bottom, transparent, #c084fc, transparent);
            margin: 3.5rem auto 0;
            animation: fadeInUp 1s ease 1s backwards;
        }

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

        .about-content {
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text p {
            line-height: 1.8;
            color: #b0b0b0;
            margin-bottom: .5rem;
        }

        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .skill-tag {
            padding: 0.5rem 1.5rem;
            background: rgba(102, 126, 234, 0.2);
            border: 1px solid #667eea;
            border-radius: 25px;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .skill-tag:hover {
            background: #667eea;
            transform: translateY(-2px);
        }

      .about-image {
   			width: 100%;
    		height: 500px;
    		background-image: url('../images/profilepic.jpg');
    		background-size: cover;
    		background-position: center;
    		border-radius: 20px;
    		position: relative;
    		overflow: hidden;
		}

        .about-image::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            ;
            animation: shimmer 3s ease-in-out infinite;
        }

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

        .portfolio-grid {
            max-width: 1400px;
            width: 100%;
        }

        .portfolio-grid h2 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

        .project-card {
            aspect-ratio: 1;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .project-card:hover {
            transform: scale(1.05);
            z-index: 10;
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
            border-color: #667eea;
        }

        .project-image {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .project-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .project-card:hover .project-image::before {
            opacity: 1;
        }

        .project-info {
            position: absolute;
            inset: 0;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 1;
        }

        .project-card:hover .project-info {
            opacity: 1;
        }

        .project-info h3 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .project-info p {
            color: #e0e0e0;
            font-size: 0.75rem;
            display: none;
        }

        .project-tags {
            display: flex;
            gap: 0.3rem;
            margin-top: 0.8rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .tag {
            padding: 0.25rem 0.6rem;
            background: rgba(102, 126, 234, 0.3);
            border-radius: 12px;
            font-size: 0.65rem;
            color: #a0b0ff;
            border: 1px solid rgba(102, 126, 234, 0.5);
        }

        .contact-content {
            max-width: 800px;
            width: 100%;
            text-align: center;
        }

        .contact-content h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-content p {
            color: #b0b0b0;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #b0b0b0;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            background: rgba(255, 255, 255, 0.08);
        }

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

        .submit-btn {
            padding: 1rem 3rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 50px;
            color: white;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            align-self: center;
        }

        .submit-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        .social-links {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 3rem;
        }

        .social-links a {
            color: #ffffff;
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .social-links a:hover {
            color: #667eea;
            transform: translateY(-3px);
        }

        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            overflow-y: auto;
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 2rem 5%;
            position: relative;
        }

        .close-btn {
            position: fixed;
            top: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 2001;
        }

        .close-btn:hover {
            background: #667eea;
            transform: rotate(90deg);
        }

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

        .project-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .project-meta {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .meta-label {
            font-size: 0.85rem;
            color: #888;
            margin-bottom: 0.3rem;
        }

        .meta-value {
            font-size: 1.1rem;
            color: #fff;
        }

        .project-hero {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            margin-bottom: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            position: relative;
            overflow: hidden;
        }

        .project-hero::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
         
        }

        .project-section {
            margin-bottom: 3rem;
        }

        .project-section h2 {
            font-size: 2rem;
            color: #667eea;
        }

        .project-section p {
            line-height: 1.8;
            color: #b0b0b0;
            margin-bottom: 1rem;
        }

        .project-images {
            position: relative;
            max-width: 100%;
            margin-top: 2rem;
            overflow: hidden;
            border-radius: 15px;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            border-radius: 15px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }
		
		.project-video-section {
            margin-bottom: 3rem;
        }

        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            background: #000;
            margin-top: 2rem;
        }

        .video-container iframe,
        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 15px;
        }

       .project-image-item {
    		min-width: 100%;
    		height: 600px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    		background-size: contain;
    		background-position: center;
    		background-repeat: no-repeat;
    		display: flex;
    		align-items: center;
    		justify-content: center;
    		font-size: 3rem;
    		cursor: zoom-in;
    		transition: all 0.3s;
    		position: relative;  /* ADD THIS LINE */
}

        .project-image-item:hover {
            opacity: 0.9;
        }

        .zoom-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 3000;
            cursor: zoom-out;
            animation: fadeIn 0.3s ease;
        }

        .zoom-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .zoom-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .zoom-close {
            position: fixed;
            top: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 3001;
        }

        .zoom-close:hover {
            background: #667eea;
            transform: rotate(90deg);
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s;
            z-index: 10;
            backdrop-filter: blur(10px);
        }

        .carousel-btn:hover {
            background: rgba(102, 126, 234, 0.8);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 1rem;
        }

        .carousel-btn.next {
            right: 1rem;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
            z-index: 10;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s;
        }

    	.indicator.active {
    		background: #667eea;
    		width: 30px;
    		border-radius: 5px;
		}

		.carousel-caption {
   			position: absolute;
   			bottom: 4rem;
    		left: 50%;
    		transform: translateX(-50%);
    		background: rgba(0, 0, 0, 0.7);
    		backdrop-filter: blur(10px);
    		color: white;
    		padding: 0.75rem 2rem;
    		border-radius: 25px;
    		font-size: 0.95rem;
    		max-width: 80%;
    		text-align: center;
    		z-index: 10;
		}

        .challenge-solution {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
			margin-bottom: 3rem;
        }

        .challenge-box, .solution-box {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .challenge-box h3, .solution-box h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #667eea;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .result-card {
            background: rgba(102, 126, 234, 0.1);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(102, 126, 234, 0.3);
        }

        .result-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #667eea;
            margin-bottom: 0.5rem;
        }

        .result-label {
            color: #b0b0b0;
            font-size: 0.95rem;
        }

        .nav-projects {
            display: flex;
            justify-content: space-between;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-project-btn {
            padding: 1rem 2rem;
            background: rgba(102, 126, 234, 0.2);
            border: 1px solid #667eea;
            border-radius: 10px;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .nav-project-btn:hover {
            background: #667eea;
            transform: translateX(5px);
        }

        .nav-project-btn.prev:hover {
            transform: translateX(-5px);
        }

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

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

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

            .nav-links {
                position: fixed;
                left: -100%;
                top: 0;
                flex-direction: column;
                background-color: rgba(10, 10, 10, 0.98);
                width: 100%;
                height: 100vh;
                text-align: center;
                transition: left 0.3s;
                padding-top: 6rem;
                gap: 3rem;
            }

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

            .nav-links a {
                font-size: 1.5rem;
            }

            .hamburger {
                display: flex;
            }

            .project-header h1 {
                font-size: 2rem;
            }

            .project-hero {
                height: 300px;
                font-size: 4rem;
            }

            .project-images {
                grid-template-columns: 1fr;
            }

            .carousel-container {
                height: 400px;
            }

            .project-image-item {
                height: 400px;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .carousel-btn.prev {
                left: 0.5rem;
            }

            .carousel-btn.next {
                right: 0.5rem;
            }

            .challenge-solution {
                grid-template-columns: 1fr;
				margin-bottom: 1.5rem;
            }

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

            .close-btn {
                top: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
            }
  }

  /* RESUME TIMELINE */
.timeline {
    position: relative;
    margin-top: 2rem;
    padding-left: 2rem;
    border-left: 2px solid rgba(102, 126, 234, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-dot {
    position: absolute;
    left: -11px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: #667eea;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.7);
}

.timeline-item h3 {
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.timeline-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.timeline-item ul {
    padding-left: 1rem;
    color: #b0b0b0;
}

.timeline-item ul li {
    margin-bottom: 0.4rem;
}

/* RESUME LAYOUT */
.resume-container {
    max-width: 900px;
    margin: 0 auto;
}

/* HEADER */
.resume-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
}

.resume-header h1 {
    font-size: 2.5rem;
}

.resume-title {
    color: #aaa;
    margin-top: 0.3rem;
}

.resume-contact {
    text-align: right;
    font-size: 0.9rem;
    color: #aaa;
}

/* SECTIONS */
.resume-section {
    margin-bottom: 2.5rem;
}

.resume-section h2 {
    margin-bottom: 1rem;
    color: #667eea;
}

/* GRID (skills/tools) */
.resume-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* TIMELINE IMPROVEMENT */
.timeline-content {
    margin-left: 1rem;
}

/* LIST */
.resume-list {
    padding-left: 1rem;
    color: #b0b0b0;
}

/* CTA */
.resume-cta {
    text-align: center;
    margin-top: 3rem;
}

/* CLEAN TWO-COLUMN LIST */
.skills-list {
    columns: 2;
    column-gap: 2rem;
    list-style-type: disc;
    padding-left: 1rem;
}

.skills-list li {
    margin-bottom: 0.25rem;
}

/* MOBILE */
@media (max-width: 768px) {
    .resume-header {
        flex-direction: column;
        text-align: left;
    }

    .resume-contact {
        text-align: left;
    }

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