body {
    background: white;
    margin: 0;
    padding: 0;
    font-family: Inter, sans-serif;
}

.container {
    width: 1440px;
    margin: 0 auto;
    position: relative;
}

.intro-text {
    width: 606px;
    height: 195px;
    position: absolute;
    left: 67px;
    top: 383px;
    text-align: center;
    font-weight: 700;
    font-size: 67px;
}

.intro-hi {
    color: #018DB0;
}

.intro-designer {
    color: #D1884F;
}

.background-shape {
    width: 438.85px;
    height: 464.90px;
    position: absolute;
    left: 825px;
    top: 326px;
    transform: rotate(-2deg);
    background: rgba(43, 182, 217, 0.36);
    border-bottom-left-radius: 224px;
}

.profile-img {
    width: 464px;
    height: 489px;
    position: absolute;
    left: 852px;
    top: 292px;
    border-bottom-left-radius: 224px;
}

.logo {
    width: 100px;
    position: absolute;
    left: 20px;
    top: 20px;
}

.description {
    width: 632px;
    position: absolute;
    left: 127px;
    top: 600px;
    font-size: 24px;
    font-weight: 500;
}

.see-more {
    color: #008AAA;
    font-weight: 400;
}

.hire-btn, .projects-btn {
    padding: 8px 35px;
    position: absolute;
    font-size: 32px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
}

.hire-btn {
    left: 123px;
    top: 783px;
    background: #008AAA;
    color: white;
    box-shadow: 0px 10px 6px rgba(0, 138, 170, 0.23);
}

.projects-btn {
    left: 363px;
    top: 783px;
    background: white;
    color: #008AAA;
    box-shadow: 0px 4px 4px rgba(0, 138, 170, 0.17);
    border: 2px solid #008AAA;
}

nav {
    position: absolute;
    top: 50px;
    right: 50px;
    display: flex;
    gap: 40px;
    font-size: 24px;
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-item img {
    width: 30px;
    height: 30px;
}

.home {
    color: #D1884F;
}

.nav-item:hover {
    color: #018DB0;
}

.welcome {
    width: 606px;
    height: 119px;
    position: absolute;
    left: -33px;
    top: 255px;
    text-align: center;
    color: #3BBADB;
    font-size: 32px;
    line-height: 90px;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 10px;
    }

    .intro-text {
        width: 100%;
        position: static;
        font-size: 6vw;
        text-align: center;
    }

    .background-shape, .profile-img {
        width: 80%;
        height: auto;
        position: static;
        margin: 20px auto;
    }

    .description {
        width: 100%;
        position: static;
        font-size: 18px;
        text-align: center;
        margin-top: 20px;
    }

    .hire-btn, .projects-btn {
        width: 80%;
        padding: 10px;
        position: static;
        margin: 10px auto;
        font-size: 24px;
        display: block;
        text-align: center;
    }

    nav {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
    }

    .nav-item {
        font-size: 20px;
    }

    .see-more {
        text-decoration: none;
        /* Additional styling as needed */
    }
    
    .projects-btn {
        text-decoration: none; 
    }
    .welcome {
        width: 100%;
        position: static;
        font-size: 24px;
        margin-top: 20px;
    }

    .hire-btn, .projects-btn {
        display: inline-block;
        padding: 10px 20px;
        font-size: 1.2rem;
        border-radius: 8px;
        text-align: center;
        text-decoration: none; /* Removes underline from link */
        cursor: pointer;
    }
    
    .hire-btn {
        background-color: #008AAA;
        color: white;
        box-shadow: 0px 10px 6px rgba(0, 138, 170, 0.23);
        transition: background-color 0.3s ease;
    }
    
    .hire-btn:hover {
        background-color: #006f88; /* Darker shade for hover effect */
    }
    
    .projects-btn {
        background-color: white;
        color: #008AAA;
        border: 2px solid #008AAA;
        box-shadow: 0px 4px 4px rgba(0, 138, 170, 0.17);
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    
    .projects-btn:hover {
        background-color: #008AAA;
        color: white;
    }

    /* General Reset */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}

h1 {
    text-align: center
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

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

.project-category h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.project-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    grid-template-columns: 1fr, 1fr, 1fr;
    gap: 1.5rem;
}

.project-item {
    background: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.project-item img, .project-item video {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.project-item h3 {
    margin: 1rem 0 0.5rem;
}

.project-item a {
    text-decoration: none;
    color: #333;
}

.project-item a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #333;
    color: #fff;
    margin-top: 2rem;
}



.container {
    text-align: center;
}

.social-media {
    display: flex;
    justify-content: center;
    align-items: center;

}

.social-media a {
    margin: 0.5em
}

.social-media a:hover {
    box-shadow: 7px 7px 6px 1px rgba(0, 255, 255, 0.2);
    cursor: pointer;
    transform: scale(1.02);
    background-color: lightblue;
}

.social-media a:active {
    color: black;
    padding: 0.9em;
}

.social-media img {
    width: 40px
}

ul {
    list-style-type: none;

}
}
