* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #ccc;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav a.active, nav a:hover {
    color: #fff;
    border-bottom: 2px solid #18d26e; 
}

.hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.2)), 
                url(''); 
    background-size: cover;
    background-position: center;
    filter: grayscale(100%); 
    display: flex;
    align-items: center;
    padding-left: 10%;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.typing-text {
    color: #fff;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #18d26e;
}

html {
    scroll-behavior: smooth;
}


.section-padding {
    padding: 100px 10%;
    background-color: #000;
}

.container {
    max-width: 1000px;
}

.section-title h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.section-title span {
    color: #18d26e; 
}


.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #bbb;
}


.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #222;
    border-radius: 5px;
}

.progress {
    height: 100%;
    background: #18d26e;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(24, 210, 110, 0.5); /* Subtle glow */
}


@media (max-width: 768px) {
    .skills-grid { grid-template-columns: 1fr; }
}
.intro-text {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 40px;
    border-left: 4px solid #18d26e;
    padding-left: 20px;
}

.timeline {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.milestone h3 {
    color: #18d26e;
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.milestone p {
    color: #bbb;
    line-height: 1.6;
}

.future-text {
    margin-top: 40px;
    font-style: italic;
    color: #888;
}


.progress {
    transition: width 1.5s ease-in-out; 
}


.resume-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.resume-col {
    flex: 1;
    min-width: 320px;
}

.resume-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    text-transform: capitalize;
}


.resume-item {
    padding: 0 0 30px 25px;
    border-left: 2px solid #18d26e; 
    position: relative;
}

.resume-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #18d26e;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.resume-item h5 {
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 15px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}


.resume-item::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    left: -10px; 
    top: 0;
    background: #000;
    border: 2px solid #18d26e;
}

.resume-item ul {
    padding-left: 18px;
    list-style: disc;
    color: #adb5bd;
}

.resume-item ul li {
    padding-bottom: 10px;
    line-height: 1.5;
}



html {
    scroll-behavior: smooth;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-item {
    background: #0d0d0d;
    padding: 40px 30px;
    border: 1px solid #222;
    position: relative;
    transition: 0.4s ease;
    overflow: hidden;
}

.project-item:hover {
    border-color: #00FF66;
    background: #111;
    transform: translateY(-10px);
}

.proj-number {
    color: #00FF66;
    font-family: monospace;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}

.project-item h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-item p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}


.project-item:hover {
    box-shadow: 0 10px 30px rgba(0, 255, 102, 0.05);
}

.highlight {
    color: #00FF66;
}

.hero-btns {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}


.btn-primary {
    background-color: #00FF66;
    color: #000;
    border: 2px solid #00FF66;
}

.btn-primary:hover {
    background-color: transparent;
    color: #00FF66;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
}


.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #333;
}

.btn-outline:hover {
    border-color: #00FF66;
    color: #00FF66;
}


.btn i {
    font-size: 1.1rem;
}


.contact-form .form-control {
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 12px 15px;
    border-radius: 4px;
}

.contact-form .form-control:focus {
    border-color: #00FF66;
    background: #151515;
    box-shadow: none;
    outline: none;
}

.btn-submit {
    background: #00FF66;
    color: #000;
    border: none;
    padding: 12px 40px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #00cc52;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.3);
}

.info-item i {
    font-size: 20px;
    width: 20px;
    text-align: center;
}

.main-footer {
    background-color: #050505;
    padding: 60px 0 30px 0;
    border-top: 1px solid #1a1a1a;
    color: #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-logo p {
    color: #888;
    font-size: 0.9rem;
}

.footer-nav {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: #00FF66;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid #333;
}

.footer-socials a:hover {
    background: #00FF66;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
}

.footer-bottom p {
    color: #555;
    font-size: 0.8rem;
}

.footer-bottom span {
    color: #00FF66;
}


@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-nav {
        justify-content: center;
    }
}


header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00FF66, transparent);
    background-size: 200% 100%;
    animation: glowMove 3s linear infinite;
}

@keyframes glowMove {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


.hero-text {
    animation: fadeInUp 1.2s ease-out;
}

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


.hero-text h1 {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.hero-text p span {
    color: #00FF66;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text h1:hover {
    text-shadow: 
        2px 0 #00FF66, 
        -2px 0 #ff00ff;
    animation: glitch 0.3s infinite;
    cursor: default;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}


body {
    position: relative;
    overflow-x: hidden;
}



.project-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.project-item.appear {
    opacity: 1;
    transform: translateY(0);
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00FF66, transparent);
    background-size: 200% 100%;
    animation: glowMove 3s linear infinite;
}

@keyframes glowMove {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


.hero-text h1:hover {
    text-shadow: 2px 0 #00FF66, -2px 0 #ff00ff;
    animation: glitch 0.3s infinite;
    cursor: pointer;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

