* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7f6;
    color: #333;
    padding: 0 2rem;
    scroll-behavior: smooth;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background: #f4f7f6;
    box-shadow: 1px 1px 15px #ccc;
    z-index: 100;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.logo img{
    height: 55px;
    width: 55px;
    border: 1px solid #4338ca;
    border-radius: 50%;
}

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

.nav-links li {
    margin-left: 1rem;
}

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

.nav-links a:hover {
    color: #2563eb;
    background: #e0e7ff;
    border-top: 1px solid #2563eb;
    border-bottom: 1px solid #2563eb;
}

.hero-section {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}

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

.highlight {
    color: #2563eb;
}

.hero-btn{
    margin-top: 2rem;
}


/* The Grid Container */
#project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}


.project-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

/* Tech Tags Styling */
.tags {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #e0e7ff;
    color: #4338ca;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.btn {
    display: inline-block;
    text-decoration: none;
    background: #2563eb;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    font-weight: 500;
}
#contact{
    margin-top: 2rem 0;
    }
#contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contact-form label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    gap: 5px;
}

#contact-form input, 
#contact-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

#contact-form textarea {
    height: 150px;
    resize: vertical;
}

footer {
    padding: 10px 3%;
    text-align: center;
    background: ;
    }

.socials {
    margin-top: 1rem;
}
.socials a{
    color: #333;
    font-weight: 600;
    margin: 0 10px;
        }



