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

body {
    background: #000e1c;
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0 14 28 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0 20px; 
}

.container .header-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px; 
    margin-top: 0;
}

body {
    padding-top: 100px; 
}
/* Active nav link style */
.nav-items li a.active {
    color: #0080FF;
    position: relative;
}

.nav-items li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0080FF;
}

nav.container.scrolled {
    box-shadow: 0 2px 20px rgba(0, 128, 255, 0.3);
    padding: 0 20px;
}

nav.container.scrolled .header-items {
    padding: 15px 0px; 
}

.container .header-items .logo i {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.container .header-items .nav-sec {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}


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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}


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

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

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

.container .header-items .nav-sec .nav-items {
    list-style: none;
    display: flex;
    gap: 30px;
}

.container .header-items .nav-sec .nav-items li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s;
}

.container .header-items .nav-sec .nav-items li a:hover {
    color: #0018A8;
}

.container .header-items .nav-sec .btn {
    padding: 10px 20px;
    background: #0018A8;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 0;
}

.container .header-items .nav-sec .btn:hover {
    border-color: #005aff;
    box-shadow: 0 0 8px #005aff, 0 0 15px #005aff;
    background: #0018A8;
    transform: scale(1.03);
    z-index: 1;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.hero-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 6rem;
}

.hero-head .hero-intro {
    font-weight: 600;
}

.hero-head p {
    margin-left: 6px;
}

.hero-head h1 {
    font-size: 5rem;
    font-weight: 700;
    color: #0080FF;
}

.hero-section .hero-img img {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    object-fit: cover;
    object-fit: cover;
    border: 3px solid #005aff;
    box-shadow: 0 0 20px rgba(0, 115, 255, 0.4);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-img img:hover {
    box-shadow: 0 0 35px rgba(0, 115, 255, 0.8);
    transform: scale(1.02);
}

.hero-social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}


.hero-line {
    flex-grow: 1;
    height: 3px;
    background: #ffffff;
    opacity: 0.7;
    margin-left: 6px;
}


.hero-icon {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}


.hero-icon a i {
    font-size: 25px;
    color: #ffffff;
    transition: 0.3s ease;
}

.hero-icon a i:hover {
    color: #ffffff;
    text-shadow: 0 0 25px rgba(0, 115, 255, 0.7),
        0 0 45px rgba(0, 115, 255, 0.5);
    transform: scale(1.15);
}


.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #0080FF;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #0080FF;
    margin: 1rem auto 0;
    border-radius: 2px;
}





.about-section {
    padding: 100px 0;
    position: relative;
}

.about-text {
    animation: fadeInLeft 1s ease;
}

.about-text h3 {
    font-size: 2rem;
    color: #0080FF;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.about-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 2rem;
}

.info-box {
    background: rgba(0, 128, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 128, 255, 0.3);
    transition: 0.3s;
}

.info-box:hover {
    background: rgba(0, 128, 255, 0.2);
    transform: translateY(-5px);
}

.info-box i {
    font-size: 2rem;
    color: #0080FF;
    margin-bottom: 10px;
}

.info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-box p {
    font-size: 0.9rem;
    color: #b0b0b0;
}


.skills-section {
    padding: 100px 0;
    background: rgba(0, 24, 168, 0.05);
}

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

.skill-card {
    background: rgba(0, 128, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 128, 255, 0.3);
    transition: 0.3s;
    cursor: pointer;
}

.skill-card:hover {
    background: rgba(0, 128, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 128, 255, 0.3);
}

.skill-card i {
    font-size: 3rem;
    color: #0080FF;
    margin-bottom: 15px;
}

.skill-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #0080FF, #00BFFF);
    border-radius: 10px;
    animation: fillProgress 2s ease;
}


.experience-section {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 60px;

}


.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #0080FF;
}


.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    padding-left: 40px;

}


.timeline-content::before {
    content: '';
    position: absolute;
    left: -68px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    transition: 0.3s ease;

}


.timeline-content:hover::before {
    box-shadow: 0 0 15px #0080FF,
        0 0 30px #0080FF,
        0 0 45px #0080FF;
}

.timeline-content {
    background: rgba(0, 128, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 128, 255, 0.3);
    transition: 0.3s;
}

.timeline-content:hover {
    background: rgba(0, 128, 255, 0.2);
}

.timeline-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.timeline-content .company {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
}

.timeline-content .date {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #b0b0b0;
    line-height: 1.6;
}



.projects-section {
    padding: 100px 0;
    background: rgba(0, 24, 168, 0.05);
}

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

.project-card {
    background: rgba(0, 128, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 128, 255, 0.3);
    transition: 0.3s;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 128, 255, 0.3);
}

.project-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #0080FF, #00BFFF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-info p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.tag {
    background: rgba(0, 128, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #0080FF;
}

.project-links {
    display: flex;
    gap: 5rem;
    justify-content: space-around;
    align-items: center;
}

.project-link {
    padding: 10px 20px;
    background: #0080FF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.project-link:hover {
    background: #0060CC;
    transform: scale(1.05);
}


.contact-section {
    padding: 80px 0;
    text-align: center;
}

.contact-container {
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.15), rgba(0, 80, 200, 0.1));
    border: 1px solid rgba(0, 128, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 128, 255, 0.2);
}


.contact-form {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 128, 255, 0.4);
    background: rgba(0, 128, 255, 0.05);
    color: white;
    resize: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0080FF;
    box-shadow: 0 0 12px #0080FF;
    outline: none;
}

.contact-btn {
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #0080FF;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-btn:hover {
    box-shadow: 0 0 15px #0080FF, 0 0 30px #0080FF;
    transform: scale(1.05);
}


.contact-social {
    width: 45%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-social a {
    color: white;
    font-size: 0.95rem;
    background: rgba(0, 128, 255, 0.1);
    padding: 15px 12px;
    border-radius: 10px;
    border: 1px solid rgba(0, 128, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.contact-social a i {
    font-size: 1.5rem;
}

.contact-social a:hover {
    box-shadow: 0 0 15px #0080FF, 0 0 30px #0080FF;
    transform: translateY(-5px);
}


.resume-button {
    margin-top: 40px;
}

.resume-button button {
    padding: 12px 25px;
    border-radius: 10px;
    background: #0080FF;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.resume-button button:hover {
    box-shadow: 0 0 15px #0080FF, 0 0 30px #0080FF;
    transform: scale(1.05);
}

.contact-section p {
    font-size: 1.1rem;
}

/* Scroll Animation Styles */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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