h2 
{
    color: white;
    font-family: 'Secular One', Roboto, Helvetica, sans-serif;
    font-weight: 700;
    font-size: clamp(0.5rem, min(2.5vw, 2.5vi), 1.875rem);
    letter-spacing: 0.05em; /* Base for mobile */
    margin: 0;
}

/* Medium and up (tablet, desktop) */
@media (min-width: 768px) {
    h2 {
        letter-spacing: 0.1em;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    h2 {
        letter-spacing: 0.15em;
    }
}

.content
{
    margin-top: 9vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-color: red;
    align-items: center;  
    height: 100%;
}

.logo 
{
    margin: 0;
    width: 100%;
    /* height: 20%; */
    height: 20vh;
    background-color: black;
    display: flex;              
    justify-content: center;   
    align-items: center;       
    position: fixed;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* subtle shadow */
}

.bgxs-logo
{
    margin-top: -2%;
    height: 80%;
}

.container
{
    position: absolute;
    bottom: 0;
    height: 0vh;
    width: 100%;
    display: flex;   
    justify-content: center;   
}

.line
{
    transform: translateY(-60%);
    height: .3vh;
    width: 100%;
    background: linear-gradient(to right,goldenrod, rgb(255, 225, 58), #ffffff, rgb(255, 225, 58), goldenrod, rgb(255, 225, 58), #ffffff, rgb(255, 225, 58),  goldenrod);
}

.container h2
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2vh;
    white-space: nowrap;
    z-index: 2;
}

.our-services
{
    position: absolute;
    transform: translateY(-50%);
    overflow-x: hidden;
    height: 3.3vh;
    max-width: 60%;
}

.spacer
{
    width: 100%;
    height: 20vh;
    z-index: 6;
}

.services 
{
    margin-top: 0;
    overflow-y: auto;      /* enable vertical scroll */
    padding: 2% 1% 10% 1%; 
    box-sizing: border-box;
    background: gray;
    width: 100%;
}

.div-left
{
    margin-top: 3%;
    margin-bottom: 3%;
    display: flex;     
    justify-content: left;
    height: 15vh;
}

.div-right
{
    margin-top: 3%;
    margin-bottom: 3%;
    display: flex;     
    justify-content: right;
    /* background: red;    */
    height: 15vh;
}

.service 
{
    position: relative;         /* make it a reference for absolute children */
    width: fit-content;         /* or set a specific width */
    justify-content: center;
}



.service-image
{
    display: block;
    height: 100%;
}

.div-text
{
    position: absolute;
    display: flex;
    bottom: 0;
    width: 92%;
    height: 15%;
    background-color: rgba(255, 0, 0, 0.8);
}

.div-left h2 
{
    font-size: 1.8vh;
    position: absolute;
    bottom: 0vh;
    left: 50%;
    transform: translateX(-55%);
    white-space: nowrap;

}

.div-right h2 {
    font-size: 1.8vh;
    position: absolute;
    bottom: 0vh;
    left: 50%;
    transform: translateX(-45%);
    white-space: nowrap;
}


