* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('./assets/bg-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}
.main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}
.blink-cursor {
    color: #00f260;
    text-shadow: 0 0 10px rgba(0, 242, 96, 0.8);
    animation: blinkAnim 1s step-end infinite;
}

@keyframes blinkAnim {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    letter-spacing: 1px;
}

.neon-text {
    color: #00f260;
    text-shadow: 0 0 10px rgba(0, 242, 96, 0.6);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #00f260;
    text-shadow: 0 0 8px rgba(0, 242, 96, 0.4);
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        justify-content: center;
    }
    .nav-links {
        display: none;
    }
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2rem 4rem 2rem;
    min-height: 90vh;
}
.hero-text-content {
    width: 55%;
    text-align: left;
}
.hero-header-box h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #00f260, #0575E6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1.2;
}
.subtitle {
    display: block;
    font-size: 1.2rem;
    color: #e0ffff;
    font-weight: 500;
    margin-top: 10px;
    
}

.typed-cursor {
    display: none !important;
}
.hero-bio-box {
    margin: 2rem 0;
    max-width: 90%;
}
.bio-text {
    color: #dcdcdc;
    font-size: 1.1rem;
    font-weight: 300;
}
.cv-button {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #00f260;
    color: #00f260;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(0, 242, 96, 0.1);
}
.cv-button:hover {
    background: #00f260;
    color: black;
    box-shadow: 0 0 20px rgba(0, 242, 96, 0.6);
    transform: translateY(-5px);
}
.hero-image-box {
    width: 40%;
    display: flex;
    justify-content: center;
}
.profile-photo {
    height: 35rem;
    width: 30rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.skills-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-bottom: 80px;
}
.skills-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #f0f0f0;
}
.skills-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.skills-icons img {
    height: 60px;
    transition: transform 0.3s;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}
.skills-icons img:hover {
    transform: scale(1.2);
}

.projects-section {
    margin-bottom: 80px;
    text-align: center;
}
.projects-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #00f260;
}
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.project-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    transition: 0.3s;
}
.project-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 30, 30, 0.8);
    border-color: #00f260;
}
.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}
.tech-stack {
    color: #00f260;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.project-desc {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 25px;
}
.btn-view {
    font-size: 0.9rem;
    border-bottom: 1px solid #00f260;
    padding-bottom: 2px;
}
.btn-view:hover {
    color: #00f260;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 0;
    text-align: center;
}
.footer-socials {
    margin: 20px 0;
}
.footer-socials a {
    font-size: 1.5rem;
    margin: 0 15px;
    color: #aaa;
}
.footer-socials a:hover {
    color: #00f260;
    transform: scale(1.2);
    display: inline-block;
}
.copyright {
    color: #666;
    font-size: 0.9rem;
}

.contact-section {
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 50px;
}
.contact-section h2 {
    font-size: 2.5rem;
    color: #00f260;
    margin-bottom: 40px;
}
.form-container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    box-sizing: border-box;
}
form input, form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-sizing: border-box;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}
form input:focus, 
form textarea:focus {
    border-color: #00f260;
    box-shadow: 0 0 10px rgba(0, 242, 96, 0.2);
}
::placeholder {
    color: #aaa;
}
.submit-btn {
    padding: 12px 40px;
    background: transparent;
    border: 2px solid #00f260;
    color: #00f260;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}
.submit-btn:hover {
    background: #00f260;
    color: black;
    box-shadow: 0 0 20px rgba(0, 242, 96, 0.6);
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 4rem;
        justify-content: center;
    }
    .hero-text-content, .hero-image-box {
        width: 100%;
    }
    .hero-text-content {
        text-align: center;
    }
    .hero-bio-box {
        max-width: 100%;
    }
    .profile-photo {
        height: 16rem;
        width: 16rem;
        margin-bottom: 30px;
    }
    .hero-header-box h1 {
        font-size: 2.5rem;
    }

}


.experience-section {
    margin-bottom: 80px;
    padding: 0 20px;
    text-align: center;
}
.experience-section h2 {
    font-size: 2.5rem;
    color: #00f260;
    margin-bottom: 50px;
}
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
    border-left: 3px solid rgba(0, 242, 96, 0.3); 
    text-align: left;
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -49.5px; 
    top: 0;
    width: 16px;
    height: 16px;
    background: #00f260;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f260, 0 0 20px #00f260;
}
.timeline-content {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
    border-radius: 15px;
    transition: 0.3s;
}
.timeline-content:hover {
    transform: translateY(-5px);
    border-color: #00f260;
    background: rgba(30, 30, 30, 0.8);
    box-shadow: 0 0 20px rgba(0, 242, 96, 0.15);
}
.timeline-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.timeline-content h4 {
    color: #00f260;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
}
.timeline-date {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.timeline-date i {
    margin-right: 5px;
}
.timeline-content p:last-child {
    color: #ccc;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 30px;
    }
    .timeline-dot {
        left: -39.5px; 
    }
    .timeline-content {
        padding: 20px;
    }
}

