html,
body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

body {
    padding-top: 20px;
}

.top-border {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: rgba(52, 211, 153, 1);
    z-index: 1050;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    display: inline;
    padding: 20px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.left-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 50px;
    height: 50px;
    color: rgba(52, 211, 153, 1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-link {
    color: rgba(52, 211, 153, 1) !important;
    background-color: transparent;
    text-decoration: none;
}

.underline-effect {
    position: relative;
    display: inline-block;
    font-size: 32px;
    color: a1e0ff;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
}

.underline-effect::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 5px;
    background-color: rgba(52, 211, 153, 1);
    transition: width 0.3s ease-in-out;
}

.underline-effect:hover::after {
    width: 100%;
}

.custom-contact-btn {
    background-color: white;
    color: rgba(52, 211, 153, 1);
    border: 2px solid rgba(52, 211, 153, 1);
    font-weight: bold;
    font-family: Arial, sans-serif;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
}

.custom-contact-btn:hover {
    background-color: #04AA6D;
    color: white;
    border-color: #04AA6D;
}

.information {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-pic {
    max-width: 250px;
}

.profile-pic img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.name-text-color {
    color: rgba(52, 211, 153, 1);
}

.featured {
    background-color: rgba(17, 24, 39, 1);
    padding: 80px 0;
    width: 100%;
}

.featured-work-text {
    color: white;
    text-align: center;
    padding-top: 40px;
    font-weight: 800;
    font-size: 36px;
    line-height: 40px;
    font-family: Arial, sans-serif;
    margin-bottom: 48px;
}

.project-card {
    background-color: #1f2937;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
    width: 100%;
}

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

.cursor-pointer {
    cursor: pointer;
}

.project-picture {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 200px;
}

.google-demo {
    background-image: url("../img/google.jpg");
}

.bandidos-demo {
    background-image: url("../img/bandidos.png");
}

.contractor-demo {
    background-image: url("../img/contractor.png");
}
.shed-demo {
    background-image: url("../img/shed.png");
}

.project-info-green {
    background-color: rgba(52, 211, 153, 1);
    padding: 16px;
}

.project-info-blue {
    background-color: #60a5fa;
    padding: 16px;
}

.project-info-purple {
    background-color: #a78bfa;
    padding: 16px;
}

.project-title {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.project-description {
    color: #1f2937;
    font-size: 16px;
    line-height: 1.4;
}

.projects {
    padding: 80px 0;
    width: 100%;
}

.projects-text {
    color: rgba(52, 211, 153, 1);
    padding-top: 40px;
    font-weight: 800;
    font-size: 36px;
    line-height: 40px;
    font-family: Arial, sans-serif;
    margin-bottom: 48px;
}

.contact-us {
    background-color: rgba(17, 24, 39, 1);
    padding: 80px 0;
    width: 100%;
}

.row-content {
    padding: 50px 0;
    border-bottom: 1px ridge;
    min-height: 200px;
}

.submit-btn {
    background-color: rgba(52, 211, 153, 1);
}