.section11 {
    width: 100%;
    background: white;
    padding: 0;
}

/* Upper Section - White Background */
.section11-upper {
    background: #7a3f05;
    padding: 2rem 2rem;
    display: flex;
    justify-content: center;
}

.section11-upper-container {
    max-width: 1400px;
    width: 100%;
    /* display: grid; */
    /* grid-template-columns: auto 1fr auto; */
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

/* Left Side - Company Information */
.section11-left {
    display: flex;
    flex-direction: column;
    /* gap: 1.5rem; */
    align-items: flex-start;
    padding: 2rem 0rem;
}

.section11-logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.section11-logo {
    height: auto;
    width: 140px;
}
.section11-pgr-logo{
    width: 60px;
    height: 60px;
}

.section11-50years-badge {
    height: 80px;
    width: auto;
}

.section11-address {
    font-size: 0.95rem;
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    max-width: 400px;
    margin-top: 1.5rem;
}

/* Middle Section - Other Projects */
.section11-middle {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 0.5rem;
}

.section11-projects-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section11-projects-title {
    font-size: 1.1rem;
    color: #000;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.section11-view-all {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #000;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.section11-view-all:hover {
    color: #7a3f05;
}

.section11-arrow {
    color: #7a3f05;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Right Side - Social Media & Certification */
.section11-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-end;
    height: 100%;
    margin-top: 1.5rem;
    /* justify-content: center; */
}

.section11-social-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}

.section11-social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.section11-social-icon {
    width: 24px;
    height: 24px;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.section11-social-icon:hover {
    opacity: 0.7;
}

.section11-certification {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.section11-cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.section11-cert-banner {
    background: #d32f2f;
    color: white;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px 4px 0 0;
}

.section11-cert-shield {
    background: #1976d2;
    color: white;
    padding: 0.5rem 0.8rem;
    font-size: 0.65rem;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
    text-align: center;
    border-radius: 0 0 4px 4px;
    line-height: 1.3;
}

/* Bottom Section - Maroon Background */
.section11-bottom {
    background: #7a3f05;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
}

.section11-bottom-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.section11-nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.section11-nav-link {
    color: white;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.section11-nav-link:hover {
    opacity: 0.8;
}

.section11-copyright {
    color: white;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section11-upper-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        flex-direction: column;
        gap: 0.1rem;
    }

    .section11-left,
    .section11-middle,
    .section11-right {
        align-items: flex-start;
    }

    .section11-right {
        align-items: flex-start;
    }

    .section11-social-container {
        align-items: flex-start;
    }

    .section11-certification {
        align-items: flex-start;
    }
}

@media (max-width: 968px) {
    .section11-upper {
        padding: 3rem 1.5rem;
    }

    .section11-bottom {
        padding: 1.25rem 1.5rem;
    }

    .section11-bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section11-nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .section11-upper {
        padding: 2rem 1rem;
    }

    .section11-bottom {
        padding: 1rem;
    }

    .section11-logo-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section11-logo {
        height: 50px;
    }

    .section11-50years-badge {
        height: 70px;
    }

    .section11-projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

.section11-footer-links-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: left;
    text-align: left;
    justify-content: center;
    margin-left: 8rem;
    margin-top: 1.5rem;
}
.disclaimer{
    background-color: #7a3f05;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.disclaimer p{
    max-width: 1200px;
    text-align: center;
    padding: 1rem 0;
}
.section11-footer-links-title{
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
    font-family: 'Arial', sans-serif;
    margin-bottom: 1rem;
}
.section11-footer-link {
    color: white;
    font-size: 0.7rem;
    font-family: 'Arial', sans-serif;
}
.section11-footer-link:hover{
    color: #ffffff8d;
}
.section11-footer-links-flex{
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 2.5rem;
}
.section11-footer-links-wrapper{
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: left;
    text-align: left;
    justify-content: top;
}
.follow-us-on-title{
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
}