* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
    background: #f6f6f6;
}

.hero {
    height: 100vh;
    background: linear-gradient(135deg, #2128b4, #067b33);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}


.hero .navbar {
    position: absolute;
    top: 20px;
    width: 100vw;
    display:flex;
}
.navbar .nav-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: opacity 0.2s ease;
}

.hero .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 1.1rem;
    font-weight: bold;
    background: white;
    color:rgb(38, 161, 38) ;
    text-decoration: none;
    border: solid 1px rgb(54, 150, 54);
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.hero .btn:hover {
    transform: translateY(-3px);
}


.hero .hero-text{
    margin-bottom: 15px;
    color: black;
    border: solid 1px rgb(8, 121, 65);
    border-radius: 10px;
    border-bottom-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 5px 10px;
    padding-top: 80px;
    margin-top: -80px;
    background: #ffffff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease;
}



#image_container {
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    /* width: fit-content; */
    /* border-radius: 50%; */
    width: 200px;              /* change to whatever size you want */
    height: 200px;             /* keep equal to width for a perfect circle */
    border-radius: 50%;
    overflow: hidden;          /* hide the parts outside the circle */
    display: inline-block;
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

#image_container img 
{
         width: 100%;
        height: 100%;
        object-fit: cover;         /* preserves aspect ratio, fills & crops */
        display: block;
}

.about, .projects, .contact {
    padding: 80px 10%;
    max-width: 1200px;
    margin: auto;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #4e54c8;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 10px;
}

.project-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 30px;
}

.project-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease;
}

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

.contact_info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    text-align: center;
    max-width: 100vw;
}

.contact_info div {
    flex: 0 0 auto;
    margin: 10px;
}

.contact ul {
    list-style: none;
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

.contact a {
    text-decoration: none;
    color: #4e54c8;
    font-weight: bold;
    transition: opacity 0.2s ease;
    border: solid 2px #4e54c8;
    padding: 5px 10px;
}

.contact a:hover {
    opacity: 0.7;
}


#email_text {
    margin-right: 5px;
    color: black;
}