body {
    font-family: 'Inter', sans-serif;
    background: rgb(250, 216, 216);
    margin: 0;
    padding: 0;
}

.main-wrapper {
    padding: 10px 40px;
}

.service-box {
    background: #fff;
    border-radius: 26px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.service-box img {
    width: 100px;
    margin-bottom: 25px;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.service-desc {
    font-size: 18px;
    color: #4b4b4b;
    line-height: 1.6;
    max-width: 550px;
    margin: auto;
}

.service-select {
    margin-top: 25px;
    width: 80%;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-size: 17px;
}

.contact-btn {
    margin-top: 35px;
    background: #e6181f;
    color: #fff;
    border: none;
    padding: 16px 45px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.contact-btn:hover {
    background: #c41419;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media(max-width: 900px) {
    .service-container {
        grid-template-columns: 1fr;
    }error-msg
    .service-select {
        width: 100%;
    }
}


.be-header {
    background: #fff;
        box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.10);
}

.be-header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 24px;

    display: flex;
    align-items: center; 
    justify-content: space-between;
}


.be-logo img {
    height: 48px;
    display: block;
}


.be-header-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* TOP BAR */
.be-header-top {
    display: flex;
    align-items: center; /* 🔥 BARAZIM PERFECT */
    gap: 20px;
    justify-content: flex-end;
    font-size: 14px;
}

/* SEARCH */
.be-search {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 24px;
    overflow: hidden;
}

.be-search input {
    border: none;
    padding: 6px 12px;
    outline: none;
}

.be-search button {
    border: none;
    background: #111;
    color: #fff;
    padding: 6px 14px;
    cursor: pointer;
}


.be-header-nav {
    display: flex;
    gap: 22px;
    justify-content: flex-end;
}

.be-header-nav a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
}


.be-ebanking {
    background: #e30613;
    color: #fff;
    border-radius: 50%;
    width: 86px;
    height: 86px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    text-align: center;
}


.be-lang-wrapper {
    position: relative;
    cursor: pointer;
}

.be-lang {
    font-weight: 500;
}

.be-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
    display: none;
    min-width: 120px;
    z-index: 999;
}

.be-lang-dropdown a {
    display: block;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
}

.be-lang-dropdown a:hover {
    background: #f5f5f5;
}

.be-lang-wrapper:hover .be-lang-dropdown {
    display: block;
}
