.projects-section {
    padding: 150px 15%;
    background-color: rgba(249, 249, 249, 0.3);
}

.projects-section a {
    color: #CC8B65;
    display: inline-block;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    padding: 5px 15px;
    border: 3px solid #CC8B65;
    border-radius: 30px;
}

.projects-section a:hover {
    background-color: #CC8B65;
    color: white;
    font-weight: 800;
}


.projects-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 75px;
    justify-items: center;
}

.box-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

.projects-section .box {
    width: 100%;
    background-position: top;
    overflow: hidden;
}

.projects-section .box img {
    width: 100%;
    object-fit: cover;
}

.box-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 0 10px;
}

.projects-section .box:hover {
    background-position: bottom;
}

.trusted-section {
font-family: 'Public Sans', sans-serif;
color: #4E4C4D;
background-color: #fff;
text-align: center;
padding: 100px 10%;
}

.trusted-section h2 {
font-size: 35px;
font-weight: 400;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.testimonial-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.testimonial-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.testimonial {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 35px 30px;
    max-width: 470px;
    min-width: 370px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.2s;
}
.testimonial:hover {
    box-shadow: 0 8px 24px rgba(204,139,101,0.12);
}
.testimonial-text {
    font-style: italic;
    color: #4E4C4D;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.6;
}
.testimonial-author {
    font-weight: 700;
    color: #CC8B65;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.skills-section {
    font-family: 'Public Sans', sans-serif;
    color: #4E4C4D;
    background-color: rgba(249, 249, 249, 0.3);
    text-align: center;
    padding: 150px 10%;
}

.skills-section h2 {
    font-size: 35px;
    font-weight: 400;
}

.skills-section .skills-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.skills-section .skill {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.skills-section .skill:hover {
    transform: translateY(-10px);
}

.skills-section .skill h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.skills-section .skill p {
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive styles */
@media (max-width: 768px) {
    .projects-section {
        flex-direction: column;
        padding: 50px 5%;
    }

    .box-container {
        width: 100%;
        margin-bottom: 20px;
    }

    .trusted-section,
    .skills-section {
        padding: 50px 5%;
    }

    .skills-section .skills-grid {
        flex-direction: column;
    }

    .skills-section .skill {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .projects-section {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 75px 7.5%;
    }

    .box-container {
        width: calc(50% - 20px);
        margin-bottom: 20px;
    }

    .trusted-section,
    .skills-section {
        padding: 75px 7.5%;
    }

    .skills-section .skills-grid {
        flex-direction: column;
    }

    .skills-section .skill {
        width: 100%;
        margin-bottom: 20px;
    }
}