.logo-holder {
    height: 100px;
    text-align: center;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../images/logo-1.svg");
    margin-top: 0;
    margin-bottom: 30px;
    text-indent: -9999px;
    overflow: hidden;
    background-size: contain
}

/* Responsive Award Images */
.awards-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.awards-list-item {
    padding: 60px;
    margin-bottom: 20px;
}

.awards-list-item img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.awards-list-item img:hover {
    transform: scale(1.05);
}

/* Responsive breakpoints for award images */
@media (max-width: 1199.98px) {
    .awards-list-item {
        padding: 8px;
    }
}

@media (max-width: 991.98px) {
    .awards-list-item {
        padding: 6px;
        margin-bottom: 15px;
    }
    
    .awards-list-item img {
        border-radius: 6px;
    }
}

@media (max-width: 767.98px) {
    .awards-list-item {
        padding: 5px;
        margin-bottom: 10px;
    }
    
    .awards-list-item img {
        border-radius: 4px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 575.98px) {
    .awards-list-item {
        padding: 3px;
        margin-bottom: 8px;
    }
    
    .awards-list-item img {
        border-radius: 3px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .awards-list-item {
        padding: 2px;
        margin-bottom: 5px;
    }
}

/* Portfolio Section Styling */
#portfolio .section-intro h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3498db;
    display: inline-block;
}

#portfolio .section-intro h3:first-child {
    margin-top: 0;
}

#portfolio .section-intro p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #4f545e;
}

#portfolio .section-intro p:last-child {
    margin-bottom: 0;
}