
.heading {

    position: relative;
    width: 100%;
    height: 60vh;
    background: url(/asset/businessmen-reflection.jpg) no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    
}
.heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 1, 47, 0.5); /* Overlay to improve text visibility */
}
.heading h1 {
    font-size: 5rem ;
    position: relative;
    z-index: 1;
    color: #fff;
}
/* .heading h1{
    text-align: left;
} */
.about{
    display: flex;
    align-items: center;
    flex-wrap: wrap;


}

.about .images{
flex: 1 1 41rem;

}

.about .images img{
    width: 100%;
}

.about .content{
    flex:1 1 41rem;
    padding:3rem;


}

.about .content        h1 {
    font-size: 3rem;
    color:var(--black);
    margin-bottom: 20px;
    position: relative;
}
.about .content h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--black);
    margin-top: 10px;
}
.about .content .company-name {
    font-size: 2.5rem;
    color:var(--black);
    margin-bottom: 20px;
}

.about .content  .about-text {
    font-size: 1.5rem;
    color:var(--light-be);
    line-height: 1.6;
    margin-bottom: 20px;
}
.how-we-work {

    position: sticky;
    text-align: center;
    
}
.how-we-work h1{  
    font-size: 3rem;
    color:var(--black);
    margin-bottom: 20px;

    position: relative;
    display: inline-block;

}

.how-we-work h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--black);
    margin-top: 10px;
    position: absolute;
    left: 0;
    bottom: -10px; /* Position the block below the text */

}

.how-we-work    .work-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
}
.how-we-work .work-box{
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 350px;
    text-align: center;
    position: relative;
    overflow: hidden;



}

.work-number {
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 5rem;
    font-weight: bold;
    color: rgba(0, 123, 255, 0.1);
    z-index: 1;
}

.work-icon {
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.work-title{
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.work-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}



@media (max-width: 768px) {
    .work-box {
        width: calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .work-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-image {
        height: 200px;
    }

    .about-content {
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .company-name {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 0.9rem;
    }
}