/* About Us Hero Block Styles */

/* Custom styling for hero elements */

.about-us-hero-container {
    min-height: 690px;
    padding-top: 90px;
    margin-top: -90px;
}

.about-us-hero-title {
    color: white;
    font-size: 3.75rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-us-hero-description p {
    color: white;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    max-width: 540px;
}

/* Overlay styling */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
    z-index: 1;
}

.container.position-relative {
    z-index: 2; /* Place content above the overlay */
}

.about-us-hero-circle {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.about-us-hero-circle:hover {
    transform: scale(1.05);
}

.about-us-hero-circle svg {
    display: block;
    margin: 0 auto;
}

/* Utility classes */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.content-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .about-us-hero-title {
        font-size: 3rem;
    }
    .about-us-hero-container {
        height: 690px;
    }
    .about-us-hero-circle svg {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .about-us-hero-title {
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px;
        text-transform: uppercase;
    }

    .about-us-hero-description p {
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
    }
    
    .about-us-hero-circle svg {
        width: 80px;
        height: 80px;
    }
    
    .about-us-hero-container {
        height: 690px;
    }
    
    /* Bottom padding for the content on mobile */
    .row.align-items-end {
        padding-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-us-hero-circle svg {
        width: 56px; /* 112px ÷ 2 = 56px (exactly half size) */
        height: 56px;
    }
}