

/* Hero Section */

.BFE_heroimg{
        position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
     object-position: center 70%; 
    z-index: 1;
}

.BFE_heroimg-overlay{
        position: relative;
    z-index: 2;
    width: 100%;
    min-height: 600px;
    padding: 60px 0;
}


.BFE_heroimg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: -1;
}


.hero-bfe {
        position: relative;

    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    

}

.hero-bfe-content {

    display: flex;
    justify-content: center;
    align-items: center;
    height: 480px;
}

.hero-bfe h1 {
    font-size: 2.8rem;
    text-align:center;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-bfe p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

/* Cards Section */
.cards {
    padding: 80px 0;
    background-color: #ffffff;
}
.card-bfe li {
    margin-left: 25px;
    font-size:19.2px;
    color:#555;
    line-height:1.5;
}

.cards-grid {
    display: flex;
    justify-content: center;
    
    /*margin-top: 50px;*/
    /*margin-bottom: 50px;*/
}

.bfe-img-objective {
    object-position: left;
}

.card-bfe {
    position: relative; 
    max-width:360px;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 30px 30px;
    margin: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.card-bfe:hover {
    transform: translateY(-5px);
}

.card-number-bfe {
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: #e0e0e0; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    color: #000;
}

.card-bfe h2 {
    color: #284139;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card-bfe p {
    color: #555;
    line-height: 1.6;
    font-size:19px;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.gallery h2 {
    text-align: center;
    color: #284139;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    height: 500px;
    width:100%;
    background-color: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-weight: bold;
    font-size: 1.2rem;
    overflow: hidden;
    object-fit:cover;
}

