.baskan-wrapper {
    flex: 1 1 24%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    width: 100%;
    padding-right: 60px;
    margin-left: auto;     
    margin-right: 0; 
}

.baskan-section {
    width: 100%;
    background-color: #efecec;
    border-radius: 16px;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 260px;
}

.baskan-image {
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
    border-radius: 16px;
    margin-bottom: -70px;
    z-index: 2;
    background: #efecec;
    min-height: 240px;
}

.baskan-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 3;
}

.baskan-bottom-section {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    width: 100% ;
}
.icon-box {
    width: 50px;
    height: 50px;
    background-color: #efecec;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s;
    cursor: pointer;
    font-size: 28px;
}

.icon-box i {
    font-size: 20px;
    color: #333;
}

.icon-box:hover {
    background-color: #e0e0e0;
}



.bottom-box {
    flex: 1 1 calc(33% - 10px);
    min-width: 100px;
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.bottom-box:hover {
    background-color: #eee;
    transform: translateY(-3px);
}

.bottom-box i {
    font-size: 20px;
    margin-bottom: 5px;
    color: #666;
    display: block;
}

.bottom-box h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.bottom-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .baskan-wrapper {
        max-width: 100%;
        margin-left: 0;
        margin-top: 20px;
        padding-right: 30px;
    }
    .baskan-section {
        min-height: 180px;
        border-radius: 10px;
    }
    .baskan-image {
        min-height: 120px;
        max-width: 220px;
        margin-bottom: -60px;
        border-radius: 10px;
    }
    .icon-box {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .baskan-wrapper {
        padding-right: 5px;
    }
    .baskan-image {
        min-height: 80px;
        max-width: 180px;
        margin-bottom: -60px;
        border-radius: 8px;
    }
}
