body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background-color: #000;
    color: #fff;
}
.navbar h2:hover{
    color: #ffc107;
}


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

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

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

.resume-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.resume-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffc107;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    color: #d3d3d3;
    font-weight: 400;
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
}

.intro-text:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.6);
    
}


.experience-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

.experience-section h2 {
    font-size: 2.8rem;
    color: #ffc107;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 350px;
    color: #d3d3d3;
  text-align: justify;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.6);
}

.card h3 {
    font-size: 1.2rem;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #fff;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card p:last-child {
    margin-bottom: 0;
    color: #b3b3b3;
    font-weight: 300;
  
}


.education-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

.education-section h2 {
    font-size: 2.8rem;
    color: #ffc107;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.education-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
    margin-bottom: 2.5rem;
}

.card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 350px;
    color: #d3d3d3;
    text-align: left;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(247, 5, 5, 0.6);
}

.card h3 {
    font-size: 1.2rem;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #fff;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.download-btn {
    background-color: #ffc107;
    color: #000;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    
}

.download-btn:hover {
    background-color: #c6c4c0;
    
}
.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 0.9em;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-icons a {
    color: #ffcc00;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #fff;
}



@media screen and (max-width: 420px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .experience-cards, .education-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
        margin-bottom: 1.5rem;
    }

    .resume-title {
        font-size: 3rem;
    }

    .intro-text {
        font-size: 1rem;
        margin-top: 1rem;
    }
    .footer {
        padding: 10px 0;
    }

}
