* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background: linear-gradient(135deg, #2c3e50, #1a2530);
    color: white;
    text-align: center;
    padding: 80px 20px 60px;
    margin-bottom: 40px;
    border-bottom: 5px solid #3498db;
}
header h1 {
    font-size: 3.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}
header h2 {
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ecf0f1;
    letter-spacing: 0.5px;
}
header p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}
.contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact a:hover {
    background-color: white;
    color: #2c3e50;
}
section {
    padding: 50px 0;
    border-bottom: 1px solid #eaeaea;
}
section:last-child {
    border-bottom: none;
}
h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
}
.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}
.skill-icon {
    font-size: 3.5rem;
    transition: transform 0.3s ease;
}
.skill-icon:hover {
    transform: scale(1.1);
}
.devicon-angular-plain {
    color: #DD0031 !important;
}   
.projects {
    display: grid;
    gap: 25px;
    margin-top: 20px;
}
.project {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}
.project:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.project h4 {
    background-color: #3498db;
    color: white;
    padding: 18px 20px;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}
.project-content {
    padding: 22px;
}
.project ul {
    margin-bottom: 15px;
    padding-left: 20px;
}
.project ul li {
    margin-bottom: 10px;
    color: #555;
}
.project ul li strong {
    color: #2c3e50;
}
.links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.links a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 18px;
    border: 2px solid #3498db;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    min-width: 120px;
    text-align: center;
}
.links a:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
}
footer {
    text-align: center;
    padding: 40px 0;
    background-color: #2c3e50;
    color: white;
}
footer a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 24px;
    border: 2px solid #3498db;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}
footer a:hover {
    background-color: #3498db;
    color: white;
}
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    header h2 {
        font-size: 1.2rem;
    }
    h3 {
        font-size: 1.6rem;
    }
    .container {
        padding: 0 15px;
    }
    .project h4 {
        font-size: 1.3rem;
        padding: 15px;
    }
    .project-content {
        padding: 18px;
    }
    .links {
        justify-content: center;
    }
    .skill-icon {
        font-size: 2.8rem;
    }
} 
.project-screenshots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background-color: #f8f9fa;
}

.project-screenshot {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
    border: 1px solid #eaeaea;
}