/* BEGIN :: אזור LOGO & COVER*/
.asm-business-card-details-cover {
    position: relative;
    height: 300px;
    overflow: visible;
}

.asm-business-card-details-cover-img {
    object-fit: cover;
    height: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.asm-business-card-details-profile-wrapper {
    position: absolute;
    bottom: -120px;
    right: 20px;
    left: 20px;
    transform: translateX(0);
    z-index: 1;
}
.asm-business-card-details-profile-img {
    width: 168px;
    height: 168px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white; /* גבול לבן */
    box-shadow: 0 0 5px 1px rgba(192, 192, 192, 0.8); /* מסגרת כסופה דקה */
}

.asm-business-card-details-profile-portrait-img {
    max-width: 300px!important;
    height: 168px;
    object-fit: cover;
    border-radius: 15px!important;
    border: 5px solid white; /* גבול לבן */
    box-shadow: 0 0 5px 1px rgba(192, 192, 192, 0.8); /* מסגרת כסופה דקה */
}

.asm-business-card-details-profile-landscape-img {
    max-width: 300px!important;
    max-height: 168px!important;
    object-fit: cover;
    border-radius: 15px!important;
    border: 5px solid white; /* גבול לבן */
    box-shadow: 0 0 5px 1px rgba(192, 192, 192, 0.8); /* מסגרת כסופה דקה */
}

.asm-business-card-details-profile-company-name {
    /* אין צורך בעיצוב נוסף, אבל אפשר להוסיף אם תרצה */
}

.asm-business-card-details-profile-full-name {
    font-size: 90%;
    font-weight: 400;
}

/* שינויים מיוחדים למובייל */
@media (max-width: 767.98px) {
    
    .asm-business-card-details-profile-wrapper {
        bottom: -160px!important;
    }
    .asm-business-card-details-profile-wrapper .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }
    
    .asm-business-card-details-profile-wrapper .ml-md-2 {
        margin-left: 0 !important;
    }
    
    .asm-business-card-details-profile-wrapper .mt-md-4 {
        margin-top: 0 !important;
    }
    
    .asm-business-card-details-profile-full-name {
        text-align: center !important;
    }
}

/* END :: אזור LOGO & COVER  */
    
    
/* BEGIN :: תפריטים מתחת ללוגו  */
.form-select-light {
    border: 1px solid #ccc; /* גבול עדין */
    border-radius: 4px; /* פינות מעוגלות */
    padding: 8px; /* ריפוד פנימי */
    transition: border-color 0.3s ease; /* אנימציה בזמן שינוי הגבול */
}
.form-select-light:focus {
    border-color: #007bff; /* צבע הגבול כאשר יש פוקוס */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* הוספת צללים כדי להדגיש את הרכיב */
}
.asm-business-card-details-nav {
    background-color: #fff;
    /*box-shadow: 0 2px 4px #CFD2D6;*/
    border-top: 2px solid #CFD2D6;
    margin-top: 130px;
}
.asm-business-card-details-menu {
    display: flex;
    justify-content: justify-content: flex-start;
    align-items: center;
    height: 60px;
    padding: 30px 0;
}
.asm-business-card-details-menu-link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    margin-left: 5px;
    margin-right: 5px;
    line-height: 50px;
    padding: 0 10px;
    transition: background-color 0.3s, color 0.3s;
}
.asm-business-card-details-menu-link:hover {
    background-color: #f0f0f0;
    text-decoration: none;
    color: #0866FF;
    border-radius: 5px;
    border-bottom: 2px solid #0866FF;
}
.asm-business-card-details-menu-link.active {
    color: #0866FF;
    border-bottom: 2px solid #0866FF;
}
/* END :: תפריטים מתחת ללוגו  */

    


/* BEGIN :: בסיס קופסה עם הצללה ופינות מעוגלות  */
.profile-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
    text-align: right;
    width: 100%;
    margin: 0 auto;
}
.profile-box-header {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.profile-box-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 30%;
    height: 2px;
    background-color: #FF6600;
    transition: width 0.375s ease;
}
.profile-box-header:hover::after {
    width: 100%;
    transition: width 0.375s ease 0s;
}
.profile-box-content {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}
.profile-box-content a.text-white {
    color: #ffffff !important;
}
 .profile-box-content h5.font-weight-bold {
    border-bottom: 1px solid #0866FF;
}
.profile-box-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.profile-box-button {
    background-color: #f0f0f0;
    border: none;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.profile-box-button:hover {
    background-color: #e0e0e0;
}
.profile-box-profile-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #555;
    margin: 10px 0;
}
@media (max-width: 767.98px) {
    
    .asm-business-card-details-nav-mobile-margin-top {
        margin-top: 170px !important;
    }
    
    .profile-box-mobile-margin-top {
        margin-top: 0px !important;
    }
}
/* END :: בסיס קופסה עם הצללה ופינות מעוגלות  */

    
/* BEGIN :: כל הבלוקים האחרים כמו גלריה, אודות, צור קשר וכו....  */
.asm-business-card-details-section-bg {
    background-color: #F2F4F7;
    border-top: 2px solid #E1E3E6;
}
#portfolio img {
    transition: transform 0.3s ease;
}
#portfolio img:hover {
    transform: scale(1.03);
}
.my_address_google_map {
    width: 100%;
    height: 400px;
    border: 0;
}
.my-icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0;
    font-size: 18px;
    color: #333;
    margin-left: 5px;
    margin-right: 5px;
}
.my-divider-90 {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 10px 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.my-divider-96 {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 10px 0;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}
/* END :: כל הבלוקים האחרים כמו גלריה, אודות, צור קשר וכו....  */
    
    