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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
    /* Keep Footer At the Bottom */
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh
}

nav {
    background: #2c3e50;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1)
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-size: 1.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #3498db;
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.hero {
    background: linear-gradient(135deg, #f59f2f 0%, #ff3636 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.about-heading {
    background: linear-gradient(135deg, #f59f2f 0%, #ff3636 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.about-text {
    text-align: center;
    font-size: large;
    margin: 3rem;
}

.resume-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.2rem;
    text-decoration: none;
    color:#2c3e50;
    transition: color 0.3s;
    font-weight: bold;
    margin-bottom: 3rem;
}

.resume-link:hover {
    color: #3498db;
}

.tech-list-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.tech-list {
    column-count: 2;
    column-gap: 20px;
    text-align: center;
    text-decoration: none;
    list-style: none;
    margin-bottom: 3rem;
}

.tech-list li {
    break-inside: avoid;
    font-size: large;
}

.welcome {
    background: linear-gradient(135deg, #f59f2f 0%, #ff3636 100%);
    color: white;
    height: 85vh;
    align-content: center;
    text-align: center;
}

.welcome p {
    font-style: italic;
}

.name {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #3498db;
}

.project-card {
    text-align: center;
}

.project-card-content .discription {
    font-style: italic;
}

.project-card-content .tech-tags {
    margin-bottom: 5%;
}

.project-card img {
    width: 50%;
    height: 50%;
}

.lets-connect {
    text-align: center;
}

.contact-info {
    text-align: center;
    columns: 2;
}

.contact-info p {
    padding: 2rem;
}

.contact-method {
    font-size: 1.2rem;
    margin: 1rem 0;
    text-align: center;
    display: flex;
    justify-content: center;
    transition: color 0.3s;
}

.contact-icon {
    font-size: 3rem;
    align-content: center;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.contact-method:hover {
    color: #3498db;
    cursor: normal;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 1.2rem;
    color:#2c3e50;
    transition: background 0.3s, color 0.3s;
    margin-bottom: 2rem;
}

.btn:hover {
    background: #3498db;
    color: white;
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;  
}