/* Firm Hero Section */
.firm-hero-section {}

.firm-hero-title {
    margin-bottom: 40px;
}

.firm-hero-divider {
    width: 100%;
    height: 2px;
    background-color: #4A6FA5;
    margin-bottom: 30px;
}

.firm-hero-description {
    max-width: 500px;
    text-align: start;
}

/* Dynamic Law Firm Section */
.dynamic-section {}

.dynamic-section .dynamic-title {

    margin-bottom: 30px;
}

.dynamic-section .dynamic-text {
    margin-bottom: 20px;
}

.dynamic-section .dynamic-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
}

/* Trusted Advisors Section */
.advisors-section {}

.advisors-section .advisors-title {

    margin-bottom: 40px;
}

.advisors-section .advisors-text {
    margin-bottom: 20px;
}

/* Our Values Section */
.values-section {
    background-color: #08182A;
    r: white;
}

.values-section .values-title {
    color: white;
    margin-bottom: 0;
}

.values-section .values-divider {
    width: 2px;
    height: 300px;
    background-color: #6c9bd1;
    margin: 0 auto;
}

.values-section .values-content {
    padding-left: 60px;
}

.values-section .value-item {
    margin-bottom: 50px;
}

.values-section .value-item-title {

    color: #6c9bd1;
    margin-bottom: 20px;
}

.values-section .value-item-text {
    color: white;
    max-width: 500px;
}

/* Achievements Section */

.achievements-section .achievements-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
    position: relative;
}

.achievements-section .achievements-blue-overlay {
    position: absolute;
    bottom: -30px;
    inset-inline-start: -30px;
    width: 150px;
    height: 200px;
    background-color: #4A6FA5;
    z-index: -1;
}

.achievements-section .achievements-image-container {
    position: relative;
}

.achievements-section .achievements-title {
    margin-bottom: 0;
}

.achievements-section .achievements-text-content {
    margin-top: 60px;
}

.achievements-section .achievements-text {
    margin-bottom: 20px;
}

/* Awards and Certifications */
.awards-section::before {
    position: absolute;
    content: "";
    background-color: var(--shape-color);
    width: 100%;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.awards-section .awards-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.awards-section .award-logo {
    height: 120px;
    width: auto;
    transition: opacity 0.3s ease;
}

.awards-section .award-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .firm-hero-divider {
        width: 150px;
    }

    .values-section .values-title {
        text-align: center;
    }

    .values-section .values-divider {
        display: none;
    }

    .values-section .values-content {
        padding-left: 15px;
        margin-top: 0;
    }

    .achievements-section .achievements-blue-overlay {
        top: -30px;
        bottom: auto;
    }
}

@media (max-width: 768px) {
    .firm-hero-title {
        text-align: center;
    }

    .firm-hero-divider {
        width: 120px;
        margin: 0 auto 20px;
    }

    .firm-hero-description {
        text-align: center;
    }

    .dynamic-section .dynamic-title,
    .advisors-section .advisors-title,
    .achievements-section .achievements-title {
        text-align: center;

    }

    .achievements-section .achievements-text-content {
        margin-top: 40px;
    }

    .values-section .values-title {
        text-align: center;

    }

    .values-section .values-content {
        padding-left: 15px;
        text-align: center;
    }

     .dynamic-section .dynamic-image {
        height: 300px;
    }

     .achievements-section .achievements-image {
        height: 300px;
    }

    .awards-grid {
        gap: 30px;
    }

    .award-logo {
        height: 60px;
    }
}

@media (max-width: 576px) {

    .firm-hero-divider {
        width: 100px;
        margin: 0 auto 15px;
    }

    .dynamic-title,
    .advisors-title,
    .achievements-title {
        text-align: center;
    }


    .values-title {
        text-align: center;
    }

    .values-content {
        padding-left: 15px;
        text-align: center;
    }

    .awards-grid {
        gap: 20px;
    }

}
