body{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #fff;
}

nav{
    background-color: #000000;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: azure;

}

.logo{
    font-size: 20px;
    font-weight: bold;
}

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

.nav-links a{
    text-decoration: none;
    color: azure;
    font-weight: bold;
}

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

.hero{
    background:linear-gradient(225deg, #0a0a0a, #295371 );
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: azure;
    text-align: center;
    height: 90vh;
}

.home-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1{
    font-size: 20px;
    text-align: center;
    padding: 10px;
}
.hero-text{
    font-size: 16px;
    text-align: center;
    padding: 10px;
    justify-content: center;
    margin: 10px;
    align-items: center;

}
.btn-primary{
    display: inline-block;
    font-size: 16px;
    padding: 12px 24px;
    margin: 20px auto;
    border-radius: 5px;
    background-color: #000000;
    color: azure;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary:hover{
    color: #7c9bd0;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    background-color: #ffffff;
}
.about{
    background-color: #000000;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: azure;
    text-align: center;
    height: 90vh;
}
.skills-title {
    background:transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 30px;
    margin-bottom: 40px;
    font-size: 1.5rem;
    display: inline-block;
    align-items: center;
    justify-content: center;
}

.skills-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    justify-content: center;
}

.skill-category {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
    justify-content: center;
}

.skill-category:hover {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.4);
    border-color: rgba(0, 0, 0, 0.2);
}

.skill-category h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #60a5fa;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: #000000;
    color: white;
    border-color: #3b82f6;
}

/* Achievements Section */
.achievements {
    background: #7c9bd0;
    padding: 100px 20px;
    text-align: center;
    height: 90vh;
}

.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.achievement-card:hover {
    background: lightgrey;
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.achievement-card h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 10px;
}

.achievement-card p {
    color: #262626;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.achievement-meta {
    font-size: 0.85rem;
    color: #ffffff;
    font-style: italic;
}

/* Projects Section Centering */
.projects {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
    height: 130vh;
}

.projects h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card h3 {
    margin-bottom: 15px;
    color: #1a1a2e;
}

.project-card p {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.project-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-links {
    margin-top: auto;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-small {
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    background: #1e293b;
    color: white;
}

.btn-small.outline {
    background: transparent;
    border: 1px solid #1e293b;
    color: #1e293b;
}

/* Footer Centering */
.footer {
    padding: 40px 20px;
    background: #000;
    color: white;
    text-align: center;}
.contact{
    background: linear-gradient(135deg, #5da8cd 0%, #1a1a2e 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: azure;
    text-align: center;
    height: 30vh;
}
.contact-social{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 20px;
}
.social-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: row;
    margin-top: 20px;
    margin-bottom: 20px;
    text-decoration: none;
}
.social-links a{
    text-decoration: none;
    color: azure;
    font-size: 20px;
}
.social-links a:hover{
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

